mirror of
https://gitlab.freedesktop.org/libinput/libinput.git
synced 2026-02-09 10:40:27 +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>
This commit is contained in:
parent
29a49e968e
commit
0266428c93
1 changed files with 3 additions and 0 deletions
|
|
@ -951,6 +951,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