summaryrefslogtreecommitdiff
path: root/libavformat/mov.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2012-08-30 00:15:58 +0200
committerMichael Niedermayer <michaelni@gmx.at>2012-08-30 00:22:58 +0200
commit158a70f17ae5eecf96990da0d7ac60f0c87d768b (patch)
tree67b091ced5516102b31369e008399d077c24a161 /libavformat/mov.c
parent946ed78f5f8683229afe778a774c12b3a25aba57 (diff)
mov: fix av_log int type
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavformat/mov.c')
-rw-r--r--libavformat/mov.c2
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);
}
}