From 200bc920ac5b770baea3796acf5cd634f8703545 Mon Sep 17 00:00:00 2001 From: Peter Hutterer Date: Fri, 6 May 2022 13:44:58 +1000 Subject: [PATCH] tools/record: fix indentation for libinput events Commit 0cdf459643bfa6264bd2d1af8f7749529ebffee1 tools/record: get rid of indent push/pop, replace with fixed indents Introduced some magic to detect if there's a '-' at the start of the format string to fix the identation. This only works if the format string is constant though, leading to an indentation error when record is run with --with-libinput. Fixes 0cdf459643bfa6264bd2d1af8f7749529ebffee1 Signed-off-by: Peter Hutterer --- tools/libinput-record.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/tools/libinput-record.c b/tools/libinput-record.c index 7ac6d257..a06055cc 100644 --- a/tools/libinput-record.c +++ b/tools/libinput-record.c @@ -1291,7 +1291,10 @@ handle_libinput_events(struct record_context *ctx, if (!e) return false; - iprintf(d->fp, I_EVENTTYPE, "%slibinput:\n", start_frame ? "- " : ""); + if (start_frame) + iprintf(d->fp, I_EVENTTYPE, "- libinput:\n"); + else + iprintf(d->fp, I_EVENTTYPE, "libinput:\n"); do { struct libinput_device *device = libinput_event_get_device(e);