tools: add missing space after listing touch/tablet capabilities

Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
This commit is contained in:
Peter Hutterer 2016-05-27 14:25:26 +10:00
parent 7af58883f5
commit 34eff6564d

View file

@ -284,10 +284,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));