forked from Imagelibrary/binutils-gdb
sim: fix func call style (space before paren)
Committed this as obvious: -foo(...); +foo (...); Signed-off-by: Mike Frysinger <vapier@gentoo.org>
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user