diff options
author | Jean First <jeanfirst@gmail.com> | 2012-01-01 16:26:15 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2012-01-01 21:19:07 +0100 |
commit | 6bd8d61378403887268b75ac33e073903f35cb5f (patch) | |
tree | af327d83481d55dcd8891aa51f185627fffb36bc | |
parent | d92d2af81f93a674626b6902cc4fae01647a8d3b (diff) | |
download | ffmpeg-6bd8d61378403887268b75ac33e073903f35cb5f.tar.gz |
mov: av_dlog use PRId64 instead of %ld
Signed-off-by: Jean First <jeanfirst@gmail.com>
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r-- | libavformat/mov.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/mov.c b/libavformat/mov.c index 9f1e02895f..923fbdb91a 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 |