mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-02-05 14:26:17 +00:00
lavf/rmdec: Use correct format specifier for int64_t.
Fixes ticket #5100.
This commit is contained in:
parent
4720a562c8
commit
b18230ee8c
@ -1376,7 +1376,7 @@ static int ivr_read_packet(AVFormatContext *s, AVPacket *pkt)
|
||||
return AVERROR_EOF;
|
||||
}
|
||||
} else {
|
||||
av_log(s, AV_LOG_ERROR, "Unsupported opcode=%d at %lX\n", opcode, avio_tell(pb) - 1);
|
||||
av_log(s, AV_LOG_ERROR, "Unsupported opcode=%d at %"PRIX64"\n", opcode, avio_tell(pb) - 1);
|
||||
return AVERROR(EIO);
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user