summaryrefslogtreecommitdiffstats
path: root/sim/common/sim-stop.c
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2011-05-11 20:02:42 +0000
committerMike Frysinger <vapier@gentoo.org>2011-05-11 20:02:42 +0000
commit34b47c3828ca8e6d9dcddb2886744fb470e4276c (patch)
treec6e8881cf59afd20bc6090bb7a2416c0ec1fd1cd /sim/common/sim-stop.c
parent1f84b6196ba7218766be02547881a5c2165be3ae (diff)
downloadppe42-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-stop.c')
-rw-r--r--sim/common/sim-stop.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/sim/common/sim-stop.c b/sim/common/sim-stop.c
index 4404e4b1bf..65881c6aea 100644
--- a/sim/common/sim-stop.c
+++ b/sim/common/sim-stop.c
@@ -35,9 +35,9 @@ int
sim_stop (SIM_DESC sd)
{
ASSERT (STATE_MAGIC (sd) == SIM_MAGIC_NUMBER);
- sim_events_schedule_after_signal(sd,
- 0 /*NOW*/,
- control_c_simulation,
- sd /*data*/);
+ sim_events_schedule_after_signal (sd,
+ 0 /*NOW*/,
+ control_c_simulation,
+ sd /*data*/);
return 1;
}
OpenPOWER on IntegriCloud