lavf/rmdec: Use correct format specifier for int64_t.

Fixes ticket #5100.
This commit is contained in:
Carl Eugen Hoyos 2015-12-22 09:29:08 +01:00
parent 4720a562c8
commit b18230ee8c

View File

@ -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);
}
}