Commit 49456a95 authored by Michael Niedermayer's avatar Michael Niedermayer

avformat/movenc: Fix printf type

Found-by: 's avatarTimothy Gu <timothygu99@gmail.com>
Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 77273456
......@@ -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);
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment