mirror of
https://gitlab.freedesktop.org/xorg/lib/libxcursor.git
synced 2026-04-25 03:50:49 +02:00
quiet warnings for unused parameters
Signed-off-by: Thomas E. Dickey <dickey@invisible-island.net>
This commit is contained in:
parent
7623dae73c
commit
ce907e36e0
2 changed files with 6 additions and 0 deletions
|
|
@ -50,6 +50,8 @@ _XcursorCloseDisplay (Display *dpy, XExtCodes *codes)
|
|||
{
|
||||
XcursorDisplayInfo *info, **prev;
|
||||
|
||||
(void) codes; /* UNUSED */
|
||||
|
||||
/*
|
||||
* Unhook from the global list
|
||||
*/
|
||||
|
|
|
|||
|
|
@ -403,6 +403,10 @@ XcursorTryShapeBitmapCursor (Display *dpy,
|
|||
int i;
|
||||
Cursor cursor;
|
||||
|
||||
(void) mask; /* UNUSED */
|
||||
(void) x; /* UNUSED */
|
||||
(void) y; /* UNUSED */
|
||||
|
||||
if (!dpy || !foreground || !background)
|
||||
return 0;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue