From 49456a95ebcbc2c2318422d51740de2f54b9915f Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Mon, 11 Aug 2014 00:09:09 +0200 Subject: [PATCH] avformat/movenc: Fix printf type Found-by: Timothy Gu Signed-off-by: Michael Niedermayer --- libavformat/movenc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavformat/movenc.c b/libavformat/movenc.c index 00dd7a3eb6..20710be41c 100644 --- a/libavformat/movenc.c +++ b/libavformat/movenc.c @@ -1346,7 +1346,7 @@ static int mov_write_source_reference_tag(AVIOContext *pb, MOVTrack *track, cons int64_t pos = avio_tell(pb); if (str_size >= UINT16_MAX){ - av_log(NULL, AV_LOG_ERROR, "reel_name length %llu is too large\n", str_size); + av_log(NULL, AV_LOG_ERROR, "reel_name length %"PRIu64" is too large\n", str_size); avio_wb16(pb, 0); return AVERROR(EINVAL); }