[FFmpeg-cvslog] mov: av_dlog use PRId64 instead of %ld
Jean First
git at videolan.org
Sun Jan 1 21:52:31 CET 2012
ffmpeg | branch: master | Jean First <jeanfirst at gmail.com> | Sun Jan 1 16:26:15 2012 +0100| [6bd8d61378403887268b75ac33e073903f35cb5f] | committer: Michael Niedermayer
mov: av_dlog use PRId64 instead of %ld
Signed-off-by: Jean First <jeanfirst at gmail.com>
Signed-off-by: Michael Niedermayer <michaelni at gmx.at>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=6bd8d61378403887268b75ac33e073903f35cb5f
---
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
More information about the ffmpeg-cvslog
mailing list