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/syscall.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/syscall.c')
-rw-r--r-- | sim/common/syscall.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sim/common/syscall.c b/sim/common/syscall.c index fd5b82a..28816c0 100644 --- a/sim/common/syscall.c +++ b/sim/common/syscall.c @@ -345,12 +345,12 @@ cb_syscall (cb, sc) errcode = EINVAL; goto FinishSyscall; } - if (cb_is_stdout(cb, fd)) + if (cb_is_stdout (cb, fd)) { result = (int) (*cb->write_stdout) (cb, buf, bytes_read); (*cb->flush_stdout) (cb); } - else if (cb_is_stderr(cb, fd)) + else if (cb_is_stderr (cb, fd)) { result = (int) (*cb->write_stderr) (cb, buf, bytes_read); (*cb->flush_stderr) (cb); |