diff options
author | Jasper St. Pierre <jstpierre@mecheye.net> | 2012-11-03 20:23:42 -0400 |
---|---|---|
committer | Peter Hutterer <peter.hutterer@who-t.net> | 2012-11-06 10:48:32 +1000 |
commit | d74b63f95fc622afe83c53580f1b55346d55fa7a (patch) | |
tree | be8d1a942bd4d33457a90edc3181cc5206328df0 /xfixes | |
parent | aad65415bff12c6860c19beac42e4165e598a40f (diff) |
cursor: Fix a minor unused variable warning
Signed-off-by: Jasper St. Pierre <jstpierre@mecheye.net>
Reviewed-by: Peter Hutterer <peter.hutterer@who-t.net>
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
Diffstat (limited to 'xfixes')
-rw-r--r-- | xfixes/cursor.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xfixes/cursor.c b/xfixes/cursor.c index 4eee59246..c45da27a9 100644 --- a/xfixes/cursor.c +++ b/xfixes/cursor.c @@ -196,7 +196,7 @@ CursorCloseScreen(ScreenPtr pScreen) Bool ret; _X_UNUSED CloseScreenProcPtr close_proc; _X_UNUSED DisplayCursorProcPtr display_proc; - ConstrainCursorHarderProcPtr constrain_proc; + _X_UNUSED ConstrainCursorHarderProcPtr constrain_proc; Unwrap(cs, pScreen, CloseScreen, close_proc); Unwrap(cs, pScreen, DisplayCursor, display_proc); |