Fixed unused variables.

Signed-off-by: Andrew Borodin <aborodin@vmail.ru>
This commit is contained in:
Andrew Borodin 2010-02-02 11:44:33 +00:00
parent 7f50de4670
commit 6354f6b265

View File

@ -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 */
}