tools: debug-events: expand timestamp prints to full millis

Tens of millis is not quite enough in some cases.

Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
This commit is contained in:
Peter Hutterer 2019-11-19 08:39:55 +10:00
parent 558cc3f11c
commit 2c613feb0c

View file

@ -155,7 +155,7 @@ print_event_header(struct libinput_event *ev)
static void
print_event_time(uint32_t time)
{
printq("%+6.2fs ", start_time ? (time - start_time) / 1000.0 : 0);
printq("%+6.3fs ", start_time ? (time - start_time) / 1000.0 : 0);
}
static inline void