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>
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);