diff options
author | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2012-08-27 09:14:40 +0200 |
---|---|---|
committer | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2012-08-27 09:14:40 +0200 |
commit | 73b40dafc8365eeb7c1451d3221f2f27d7f22e8f (patch) | |
tree | 0ab3058cef4ed43e1e5c70475d5a63e3dd691c69 | |
parent | 4e8b20609201161c81e047e1c4eec30a26952dfd (diff) | |
download | ffmpeg-73b40dafc8365eeb7c1451d3221f2f27d7f22e8f.tar.gz |
Use correct format identifier for uint64_t.
-rw-r--r-- | libavformat/nutdec.c | 2 |
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--) |