diff options
author | Clément Bœsch <u@pkh.me> | 2017-03-24 13:29:45 +0100 |
---|---|---|
committer | Clément Bœsch <u@pkh.me> | 2017-03-24 13:34:39 +0100 |
commit | 46f4f8ad865d4e4d867d14edb44a656318951ec1 (patch) | |
tree | 0e85a99befbcfc982b98ebc3ac994fbbdd470ec0 /libavformat/rtpdec_jpeg.c | |
parent | 1436769c57cc6e5209609073e5fd60776a293669 (diff) | |
parent | 1263b2039eb5aaf1522e9de9f07c787ab30a5f50 (diff) | |
download | ffmpeg-46f4f8ad865d4e4d867d14edb44a656318951ec1.tar.gz |
Merge commit '1263b2039eb5aaf1522e9de9f07c787ab30a5f50'
* commit '1263b2039eb5aaf1522e9de9f07c787ab30a5f50':
Adjust printf conversion specifiers to match variable signedness
Merged-by: Clément Bœsch <u@pkh.me>
Diffstat (limited to 'libavformat/rtpdec_jpeg.c')
-rw-r--r-- | libavformat/rtpdec_jpeg.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/rtpdec_jpeg.c b/libavformat/rtpdec_jpeg.c index 397b5cf56c..05dd17205c 100644 --- a/libavformat/rtpdec_jpeg.c +++ b/libavformat/rtpdec_jpeg.c @@ -247,7 +247,7 @@ static int jpeg_parse_packet(AVFormatContext *ctx, PayloadContext *jpeg, type &= ~0x40; } 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; } |