From 6354f6b2650a554bd78b3f4bfbff4e6556c37aeb Mon Sep 17 00:00:00 2001 From: Andrew Borodin Date: Tue, 2 Feb 2010 11:44:33 +0000 Subject: [PATCH] Fixed unused variables. Signed-off-by: Andrew Borodin --- lib/tty/mouse.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lib/tty/mouse.c b/lib/tty/mouse.c index e710396a2..1469211e7 100644 --- a/lib/tty/mouse.c +++ b/lib/tty/mouse.c @@ -47,6 +47,9 @@ show_mouse_pointer (int x, int y) #ifdef HAVE_LIBGPM if (use_mouse_p == MOUSE_GPM) Gpm_DrawPointer (x, y, gpm_consolefd); +#else + (void) x; + (void) y; #endif /* HAVE_LIBGPM */ }