[FFmpeg-cvslog] Use correct format identifier for uint64_t.

Carl Eugen Hoyos git at videolan.org
Mon Aug 27 09:15:17 CEST 2012


ffmpeg | branch: master | Carl Eugen Hoyos <cehoyos at ag.or.at> | Mon Aug 27 09:14:40 2012 +0200| [73b40dafc8365eeb7c1451d3221f2f27d7f22e8f] | committer: Carl Eugen Hoyos

Use correct format identifier for uint64_t.

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=73b40dafc8365eeb7c1451d3221f2f27d7f22e8f
---

 libavformat/nutdec.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libavformat/nutdec.c b/libavformat/nutdec.c
index 3389c79..397e44f 100644
--- a/libavformat/nutdec.c
+++ b/libavformat/nutdec.c
@@ -623,7 +623,7 @@ static int find_and_decode_index(NUTContext *nut)
                 int flag = x & 1;
                 x >>= 1;
                 if (n + x >= syncpoint_count + 1) {
-                    av_log(s, AV_LOG_ERROR, "index overflow A %d + %d >= %d\n", n, x, syncpoint_count + 1);
+                    av_log(s, AV_LOG_ERROR, "index overflow A %d + %"PRIu64" >= %d\n", n, x, syncpoint_count + 1);
                     goto fail;
                 }
                 while (x--)



More information about the ffmpeg-cvslog mailing list