diff options
author | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2015-12-22 09:29:08 +0100 |
---|---|---|
committer | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2015-12-22 09:29:08 +0100 |
commit | b18230ee8c166eddcef8592c3217b4f1c3fc33c9 (patch) | |
tree | d02df4880e274ef723fcba895f878ad96984ca3d /libavformat | |
parent | 4720a562c8d45b15c49ea3535a8e74933b1ac260 (diff) | |
download | ffmpeg-b18230ee8c166eddcef8592c3217b4f1c3fc33c9.tar.gz |
lavf/rmdec: Use correct format specifier for int64_t.
Fixes ticket #5100.
Diffstat (limited to 'libavformat')
-rw-r--r-- | libavformat/rmdec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/rmdec.c b/libavformat/rmdec.c index 4a4665483f..4e46a3d6e6 100644 --- a/libavformat/rmdec.c +++ b/libavformat/rmdec.c @@ -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); } } |