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-resume.c | |
parent | 1f84b6196ba7218766be02547881a5c2165be3ae (diff) | |
download | gdb-34b47c3828ca8e6d9dcddb2886744fb470e4276c.zip gdb-34b47c3828ca8e6d9dcddb2886744fb470e4276c.tar.gz gdb-34b47c3828ca8e6d9dcddb2886744fb470e4276c.tar.bz2 |
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-resume.c')
-rw-r--r-- | sim/common/sim-resume.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sim/common/sim-resume.c b/sim/common/sim-resume.c index 3262568..ddb7054 100644 --- a/sim/common/sim-resume.c +++ b/sim/common/sim-resume.c @@ -83,7 +83,7 @@ sim_resume (SIM_DESC sd, #ifdef SIM_CPU_EXCEPTION_RESUME { sim_cpu* cpu = STATE_CPU (sd, next_cpu_nr); - SIM_CPU_EXCEPTION_RESUME(sd, cpu, sig_to_deliver); + SIM_CPU_EXCEPTION_RESUME (sd, cpu, sig_to_deliver); } #endif |