summaryrefslogtreecommitdiff
path: root/libavformat
diff options
context:
space:
mode:
authorChristophe Gisquet <christophe.gisquet@gmail.com>2015-02-27 16:10:38 +0100
committerMichael Niedermayer <michaelni@gmx.at>2015-02-27 16:55:34 +0100
commit60bdc868b9c291e4fdd58004d0c839719c23902e (patch)
tree24e9c91189878650f7fba72dd4f485073da52725 /libavformat
parent0e699676f9a8b0b2bff994980e560f51a60b6350 (diff)
lavf/mov: correct printf specifier
The type is int64_t. Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavformat')
-rw-r--r--libavformat/mov.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/mov.c b/libavformat/mov.c
index 5ff753d5c8..286f3681f6 100644
--- a/libavformat/mov.c
+++ b/libavformat/mov.c
@@ -1236,7 +1236,7 @@ static int mov_read_aclr(MOVContext *c, AVIOContext *pb, MOVAtom atom)
av_log(c, AV_LOG_ERROR, "aclr not decoded - unable to add atom to extradata\n");
}
} else {
- av_log(c, AV_LOG_WARNING, "aclr not decoded - unexpected size %ld\n", atom.size);
+ av_log(c, AV_LOG_WARNING, "aclr not decoded - unexpected size %"PRId64"\n", atom.size);
}
}