Adjust printf conversion specifiers to match variable signedness

This commit is contained in:
Diego Biurrun
2015-12-15 10:50:18 +01:00
parent ca1e5eea0c
commit 1263b2039e
10 changed files with 36 additions and 36 deletions

View File

@@ -230,7 +230,7 @@ static int jpeg_parse_packet(AVFormatContext *ctx, PayloadContext *jpeg,
len -= 8;
if (type > 1) {
av_log(ctx, AV_LOG_ERROR, "Unimplemented RTP/JPEG type %d\n", type);
av_log(ctx, AV_LOG_ERROR, "Unimplemented RTP/JPEG type %"PRIu8"\n", type);
return AVERROR_PATCHWELCOME;
}