summaryrefslogtreecommitdiff
path: root/libavformat/nutdec.c
diff options
context:
space:
mode:
authorCarl Eugen Hoyos <cehoyos@ag.or.at>2012-08-27 09:14:40 +0200
committerCarl Eugen Hoyos <cehoyos@ag.or.at>2012-08-27 09:14:40 +0200
commit73b40dafc8365eeb7c1451d3221f2f27d7f22e8f (patch)
tree0ab3058cef4ed43e1e5c70475d5a63e3dd691c69 /libavformat/nutdec.c
parent4e8b20609201161c81e047e1c4eec30a26952dfd (diff)
Use correct format identifier for uint64_t.
Diffstat (limited to 'libavformat/nutdec.c')
-rw-r--r--libavformat/nutdec.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/nutdec.c b/libavformat/nutdec.c
index 3389c79ba9..397e44ff4d 100644
--- a/libavformat/nutdec.c
+++ b/libavformat/nutdec.c
@@ -623,7 +623,7 @@ static int find_and_decode_index(NUTContext *nut)
int flag = x & 1;
x >>= 1;
if (n + x >= syncpoint_count + 1) {
- av_log(s, AV_LOG_ERROR, "index overflow A %d + %d >= %d\n", n, x, syncpoint_count + 1);
+ av_log(s, AV_LOG_ERROR, "index overflow A %d + %"PRIu64" >= %d\n", n, x, syncpoint_count + 1);
goto fail;
}
while (x--)