tools: add missing space after listing touch/tablet capabilities

Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
(cherry picked from commit 34eff6564d)
This commit is contained in:
Peter Hutterer 2016-05-27 14:25:26 +10:00
parent 5a599654d8
commit b03fc49a83

View file

@ -268,10 +268,10 @@ print_device_notify(struct libinput_event *ev)
printf("pointer ");
if (libinput_device_has_capability(dev,
LIBINPUT_DEVICE_CAP_TOUCH))
printf("touch");
printf("touch ");
if (libinput_device_has_capability(dev,
LIBINPUT_DEVICE_CAP_TABLET_TOOL))
printf("tablet");
printf("tablet ");
printf("\n");
printf("Tap-to-click: %s\n", tap_default(dev));