mirror of
https://gitlab.freedesktop.org/libinput/libinput.git
synced 2026-01-10 23:20:17 +01:00
tools: fflush the output in debug-events after each set of events
Fixes e.g. the case where debug-events is used to get the initial device
list but no more. Since we never flush, the content is stuck in the
buffers and gets lost.
Easy way to reproduce: `libinput debug-events | cat`, then ctrl+c and see
nothing show up (before this patch, anyway).
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
(cherry picked from commit 0266428c93)
This commit is contained in:
parent
6420178b5f
commit
d6099ab159
1 changed files with 3 additions and 0 deletions
|
|
@ -952,6 +952,9 @@ handle_and_print_events(struct libinput *li)
|
|||
libinput_event_destroy(ev);
|
||||
rc = 0;
|
||||
}
|
||||
|
||||
fflush(stdout);
|
||||
|
||||
return rc;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue