From 158a70f17ae5eecf96990da0d7ac60f0c87d768b Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Thu, 30 Aug 2012 00:15:58 +0200 Subject: [PATCH] mov: fix av_log int type Signed-off-by: Michael Niedermayer --- libavformat/mov.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavformat/mov.c b/libavformat/mov.c index 256e81f..1840170 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); } } -- 2.7.4