From b03fc49a839ecf34d6e43034b5c1dfef1e5ea977 Mon Sep 17 00:00:00 2001 From: Peter Hutterer Date: Fri, 27 May 2016 14:25:26 +1000 Subject: [PATCH] tools: add missing space after listing touch/tablet capabilities Signed-off-by: Peter Hutterer (cherry picked from commit 34eff6564dad082d1be39729cdd532b554edcf6b) --- tools/libinput-list-devices.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/libinput-list-devices.c b/tools/libinput-list-devices.c index 7683c3f6..71cecab3 100644 --- a/tools/libinput-list-devices.c +++ b/tools/libinput-list-devices.c @@ -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));