From 202eb68dc061510d57900d29b3a76fe2ed811998 Mon Sep 17 00:00:00 2001 From: Peter Hutterer Date: Thu, 28 Jan 2016 15:02:54 +1000 Subject: [PATCH] Fix compiler warnings about missing tablet event cases Signed-off-by: Peter Hutterer --- src/xf86libinput.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/xf86libinput.c b/src/xf86libinput.c index b520b26..32bc9f8 100644 --- a/src/xf86libinput.c +++ b/src/xf86libinput.c @@ -1131,6 +1131,11 @@ xf86libinput_handle_event(struct libinput_event *event) case LIBINPUT_EVENT_GESTURE_PINCH_UPDATE: case LIBINPUT_EVENT_GESTURE_PINCH_END: break; + case LIBINPUT_EVENT_TABLET_TOOL_AXIS: + case LIBINPUT_EVENT_TABLET_TOOL_BUTTON: + case LIBINPUT_EVENT_TABLET_TOOL_PROXIMITY: + case LIBINPUT_EVENT_TABLET_TOOL_TIP: + break; } }