diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2014-08-11 00:09:09 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2014-08-11 00:09:09 +0200 |
commit | 49456a95ebcbc2c2318422d51740de2f54b9915f (patch) | |
tree | 394e08ad3d99d89ab468d3e799e1f523d520d4ee | |
parent | 77273456137f1799e6eb2066a4d767b553568aba (diff) | |
download | ffmpeg-49456a95ebcbc2c2318422d51740de2f54b9915f.tar.gz |
avformat/movenc: Fix printf type
Found-by: Timothy Gu <timothygu99@gmail.com>
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r-- | libavformat/movenc.c | 2 |
1 files changed, 1 insertions, 1 deletions
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); } |