fixup! Print ISO 8601 time for wall clock time values

This commit is contained in:
Eugene Syromyatnikov 2018-11-25 16:09:40 +01:00
parent f49fc80253
commit aa720f7306

3
v4l2.c
View File

@ -449,7 +449,8 @@ print_v4l2_buffer(struct tcb *const tcp, const unsigned int code,
printflags(v4l2_buf_flags, b.flags, "V4L2_BUF_FLAG_???");
if (code == VIDIOC_DQBUF) {
tprints(", timestamp = ");
MPERS_FUNC_NAME(print_struct_timeval)(&b.timestamp);
MPERS_FUNC_NAME(print_struct_timeval)(&b.timestamp,
true);
}
tprints(", ...");
}