mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2025-01-08 23:04:35 +08:00
media: v4l2-ioctl.c: fix timestamp format
The timestamp uses microseconds, not nanoseconds, so use %06ld instead of %09ld. Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl> Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
This commit is contained in:
parent
bea7515df5
commit
48e15418e4
@ -476,7 +476,7 @@ static void v4l_print_buffer(const void *arg, bool write_only)
|
||||
const struct v4l2_plane *plane;
|
||||
int i;
|
||||
|
||||
pr_cont("%02d:%02d:%02d.%09ld index=%d, type=%s, request_fd=%d, flags=0x%08x, field=%s, sequence=%d, memory=%s",
|
||||
pr_cont("%02d:%02d:%02d.%06ld index=%d, type=%s, request_fd=%d, flags=0x%08x, field=%s, sequence=%d, memory=%s",
|
||||
(int)p->timestamp.tv_sec / 3600,
|
||||
((int)p->timestamp.tv_sec / 60) % 60,
|
||||
((int)p->timestamp.tv_sec % 60),
|
||||
|
Loading…
Reference in New Issue
Block a user