From 7b21026e3a15dfe4f73f3e0d14e1dd0d795e4ea1 Mon Sep 17 00:00:00 2001 From: Peter Hutterer Date: Wed, 3 Feb 2016 17:11:42 +1000 Subject: [PATCH] test: fix printfs to say "TABLET TOOL" instead of "TABLET" Signed-off-by: Peter Hutterer --- test/litest.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/test/litest.c b/test/litest.c index 6822fe6d..2d31c7bb 100644 --- a/test/litest.c +++ b/test/litest.c @@ -1929,16 +1929,16 @@ litest_event_type_str(struct libinput_event *event) str = "GESTURE PINCH END"; break; case LIBINPUT_EVENT_TABLET_TOOL_AXIS: - str = "TABLET AXIS"; + str = "TABLET TOOL AXIS"; break; case LIBINPUT_EVENT_TABLET_TOOL_PROXIMITY: - str = "TABLET PROX"; + str = "TABLET TOOL PROX"; break; case LIBINPUT_EVENT_TABLET_TOOL_TIP: - str = "TABLET TIP"; + str = "TABLET TOOL TIP"; break; case LIBINPUT_EVENT_TABLET_TOOL_BUTTON: - str = "TABLET BUTTON"; + str = "TABLET TOOL BUTTON"; break; } return str;