tools/record: fix indentation for libinput events
authorPeter Hutterer <peter.hutterer@who-t.net>
Fri, 6 May 2022 03:44:58 +0000 (13:44 +1000)
committerPeter Hutterer <peter.hutterer@who-t.net>
Fri, 6 May 2022 04:04:59 +0000 (14:04 +1000)
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 <peter.hutterer@who-t.net>
tools/libinput-record.c

index 7ac6d25791d3877eb9ca501b4bcbec4ecb34a024..a06055cc3a8f52746a7e6d7e3b8c57b431ce8a14 100644 (file)
@@ -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);