]> git.sesse.net Git - ffmpeg/commitdiff
Cast a __u64 variable to uint64_t so that it can be printed without warnings
authorLuca Abeni <lucabe72@email.it>
Sun, 15 Feb 2009 14:32:09 +0000 (14:32 +0000)
committerLuca Abeni <lucabe72@email.it>
Sun, 15 Feb 2009 14:32:09 +0000 (14:32 +0000)
Originally committed as revision 17325 to svn://svn.ffmpeg.org/ffmpeg/trunk

libavdevice/v4l2.c

index 819b6a5c1c66c50d2d4bb95dbaa5ac58360a2af3..940db7139488a0ac1cca37c48871bed25c56d086 100644 (file)
@@ -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);