Commit 3b40e9e3 authored by lucabe's avatar lucabe

Cast a __u64 variable to uint64_t so that it can be printed without warnings


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@17325 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 6214463f
......@@ -495,7 +495,7 @@ static int v4l2_set_parameters( AVFormatContext *s1, AVFormatParameters *ap )
}
av_log(s1, AV_LOG_DEBUG, "The V4L2 driver set standard: %s, id: %"PRIu64"\n",
ap->standard, standard.id);
ap->standard, (uint64_t)standard.id);
if (ioctl(s->fd, VIDIOC_S_STD, &standard.id) < 0) {
av_log(s1, AV_LOG_ERROR, "The V4L2 driver ioctl set standard(%s) failed\n",
ap->standard);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment