From 73b40dafc8365eeb7c1451d3221f2f27d7f22e8f Mon Sep 17 00:00:00 2001 From: Carl Eugen Hoyos Date: Mon, 27 Aug 2012 09:14:40 +0200 Subject: [PATCH] Use correct format identifier for uint64_t. --- libavformat/nutdec.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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--)