From cbf775ba3d73a9552957831b9a85db4b974706ae Mon Sep 17 00:00:00 2001 From: Peter Hutterer Date: Wed, 3 Feb 2016 16:47:17 +1000 Subject: [PATCH] tools: fix output to say TABLET_TOOL instead of just tablet Signed-off-by: Peter Hutterer --- tools/event-debug.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tools/event-debug.c b/tools/event-debug.c index 648111e5..2c904fe0 100644 --- a/tools/event-debug.c +++ b/tools/event-debug.c @@ -110,16 +110,16 @@ print_event_header(struct libinput_event *ev) type = "GESTURE_PINCH_END"; break; case LIBINPUT_EVENT_TABLET_TOOL_AXIS: - type = "TABLET_AXIS"; + type = "TABLET_TOOL_AXIS"; break; case LIBINPUT_EVENT_TABLET_TOOL_PROXIMITY: - type = "TABLET_PROXIMITY"; + type = "TABLET_TOOL_PROXIMITY"; break; case LIBINPUT_EVENT_TABLET_TOOL_TIP: - type = "TABLET_TIP"; + type = "TABLET_TOOL_TIP"; break; case LIBINPUT_EVENT_TABLET_TOOL_BUTTON: - type = "TABLET_BUTTON"; + type = "TABLET_TOOL_BUTTON"; break; }