[FFmpeg-cvslog] lavf/rmdec: Use correct format specifier for int64_t.
Carl Eugen Hoyos
git at videolan.org
Tue Dec 22 09:30:17 CET 2015
ffmpeg | branch: master | Carl Eugen Hoyos <cehoyos at ag.or.at> | Tue Dec 22 09:29:08 2015 +0100| [b18230ee8c166eddcef8592c3217b4f1c3fc33c9] | committer: Carl Eugen Hoyos
lavf/rmdec: Use correct format specifier for int64_t.
Fixes ticket #5100.
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=b18230ee8c166eddcef8592c3217b4f1c3fc33c9
---
libavformat/rmdec.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/libavformat/rmdec.c b/libavformat/rmdec.c
index 4a46654..4e46a3d 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);
}
}
More information about the ffmpeg-cvslog
mailing list