diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2012-08-30 00:15:58 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2012-08-30 00:22:58 +0200 |
commit | 158a70f17ae5eecf96990da0d7ac60f0c87d768b (patch) | |
tree | 67b091ced5516102b31369e008399d077c24a161 | |
parent | 946ed78f5f8683229afe778a774c12b3a25aba57 (diff) | |
download | ffmpeg-158a70f17ae5eecf96990da0d7ac60f0c87d768b.tar.gz |
mov: fix av_log int type
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 256e81f519..1840170cd5 100644 --- a/libavformat/mov.c +++ b/libavformat/mov.c @@ -2738,7 +2738,7 @@ static int mov_read_default(MOVContext *c, AVIOContext *pb, MOVAtom atom) if (left > 0) /* skip garbage at atom end */ avio_skip(pb, left); else if(left < 0) { - av_log(c->fc, AV_LOG_DEBUG, "undoing overread of %d in '%.4s'\n", -left, (char*)&a.type); + av_log(c->fc, AV_LOG_DEBUG, "undoing overread of %"PRId64" in '%.4s'\n", -left, (char*)&a.type); avio_seek(pb, left, SEEK_CUR); } } |