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>
This commit is contained in:
parent
e320736c45
commit
38a61e9a7c
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue