[FFmpeg-cvslog] r17325 - trunk/libavdevice/v4l2.c
lucabe
subversion
Sun Feb 15 15:32:11 CET 2009
Author: lucabe
Date: Sun Feb 15 15:32:09 2009
New Revision: 17325
Log:
Cast a __u64 variable to uint64_t so that it can be printed without warnings
Modified:
trunk/libavdevice/v4l2.c
Modified: trunk/libavdevice/v4l2.c
==============================================================================
--- trunk/libavdevice/v4l2.c Sun Feb 15 15:31:18 2009 (r17324)
+++ trunk/libavdevice/v4l2.c Sun Feb 15 15:32:09 2009 (r17325)
@@ -495,7 +495,7 @@ static int v4l2_set_parameters( AVFormat
}
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);
More information about the ffmpeg-cvslog
mailing list