diff options
| author | Mike Frysinger <vapier@gentoo.org> | 2011-05-11 20:02:42 +0000 |
|---|---|---|
| committer | Mike Frysinger <vapier@gentoo.org> | 2011-05-11 20:02:42 +0000 |
| commit | 34b47c3828ca8e6d9dcddb2886744fb470e4276c (patch) | |
| tree | c6e8881cf59afd20bc6090bb7a2416c0ec1fd1cd /sim/common/sim-profile.c | |
| parent | 1f84b6196ba7218766be02547881a5c2165be3ae (diff) | |
| download | ppe42-binutils-34b47c3828ca8e6d9dcddb2886744fb470e4276c.tar.gz ppe42-binutils-34b47c3828ca8e6d9dcddb2886744fb470e4276c.zip | |
sim: fix func call style (space before paren)
Committed this as obvious:
-foo(...);
+foo (...);
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
Diffstat (limited to 'sim/common/sim-profile.c')
| -rw-r--r-- | sim/common/sim-profile.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sim/common/sim-profile.c b/sim/common/sim-profile.c index 5f1cec3aed..7696419683 100644 --- a/sim/common/sim-profile.c +++ b/sim/common/sim-profile.c @@ -740,7 +740,7 @@ profile_print_pc (sim_cpu *cpu, int verbose) } if (ok == 0) sim_io_eprintf (sd, "Failed to write to \"gmon.out\" profile file\n"); - fclose(pf); + fclose (pf); } } |

