summaryrefslogtreecommitdiff
path: root/libavformat/rmdec.c
diff options
context:
space:
mode:
authorCarl Eugen Hoyos <cehoyos@ag.or.at>2015-12-22 09:29:08 +0100
committerCarl Eugen Hoyos <cehoyos@ag.or.at>2015-12-22 09:29:08 +0100
commitb18230ee8c166eddcef8592c3217b4f1c3fc33c9 (patch)
treed02df4880e274ef723fcba895f878ad96984ca3d /libavformat/rmdec.c
parent4720a562c8d45b15c49ea3535a8e74933b1ac260 (diff)
lavf/rmdec: Use correct format specifier for int64_t.
Fixes ticket #5100.
Diffstat (limited to 'libavformat/rmdec.c')
-rw-r--r--libavformat/rmdec.c2
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);
}
}