[FFmpeg-devel] [PATCH 5/5] mov: av_dlog use PRId64 instead of %ld

Jean First jeanfirst at gmail.com
Sun Jan 1 16:26:15 CET 2012


Signed-off-by: Jean First <jeanfirst at gmail.com>
---
 libavformat/mov.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/libavformat/mov.c b/libavformat/mov.c
index 9f1e028..923fbdb 100644
--- a/libavformat/mov.c
+++ b/libavformat/mov.c
@@ -594,7 +594,7 @@ static int mov_read_chan(MOVContext *c, AVIOContext *pb, MOVAtom atom)
     if (atom.size < 16ULL + num_descr * 20ULL)
         return 0;
 
-    av_dlog(c->fc, "chan: size=%ld version=%u flags=%u layout=%u bitmap=%u num_descr=%u\n",
+    av_dlog(c->fc, "chan: size=%" PRId64 " version=%u flags=%u layout=%u bitmap=%u num_descr=%u\n",
             atom.size, version, flags, layout_tag, bitmap, num_descr);
 
 #if 0
-- 
1.7.7.3



More information about the ffmpeg-devel mailing list