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

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