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/callback.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/callback.c')
-rw-r--r-- | sim/common/callback.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sim/common/callback.c b/sim/common/callback.c index 9bc8019..a8f344e 100644 --- a/sim/common/callback.c +++ b/sim/common/callback.c @@ -231,7 +231,7 @@ os_poll_quit (p) #endif #if defined (_MSC_VER) /* NB - this will not compile! */ - int k = win32pollquit(); + int k = win32pollquit (); if (k == 1) return 1; else if (k == 2) |