diff options
Diffstat (limited to 'sim/common/sim-stop.c')
-rw-r--r-- | sim/common/sim-stop.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sim/common/sim-stop.c b/sim/common/sim-stop.c index 4404e4b..65881c6 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; } |