diff options
author | Alan Coopersmith <alan.coopersmith@sun.com> | 2009-09-15 13:54:50 -0700 |
---|---|---|
committer | Peter Hutterer <peter.hutterer@who-t.net> | 2009-09-16 11:04:25 +1000 |
commit | 38a61e9a7cf616e26a79dba815bf67737317d1eb (patch) | |
tree | a936c342d001d523c35e40657c98cac8bf817d33 /test | |
parent | e320736c457ea7b2f19a4c7c2dfc0c461d0dd405 (diff) |
Remove stray semi-colon in protocol-common.c
Caused Sun compilers to issue warning:
"protocol-common.c", line 141: warning: syntax error: empty declaration
Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
Diffstat (limited to 'test')
-rw-r--r-- | test/xi2/protocol-common.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/xi2/protocol-common.c b/test/xi2/protocol-common.c index 2d0bc3699..2dff1ad6a 100644 --- a/test/xi2/protocol-common.c +++ b/test/xi2/protocol-common.c @@ -138,7 +138,7 @@ void init_window(WindowPtr window, WindowPtr parent, int id) /* Needed for the screen setup, otherwise we crash during sprite initialization */ static Bool device_cursor_init(DeviceIntPtr dev, ScreenPtr screen) { return TRUE; } -static Bool set_cursor_pos(DeviceIntPtr dev, ScreenPtr screen, int x, int y, Bool event) { return TRUE; }; +static Bool set_cursor_pos(DeviceIntPtr dev, ScreenPtr screen, int x, int y, Bool event) { return TRUE; } void init_simple(void) { screenInfo.arraySize = MAXSCREENS; |