summaryrefslogtreecommitdiff
path: root/libavformat/rtpdec_xiph.c
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2015-12-15 10:50:18 +0100
committerDiego Biurrun <diego@biurrun.de>2016-10-28 11:22:21 +0200
commit1263b2039eb5aaf1522e9de9f07c787ab30a5f50 (patch)
tree476a8f24a973d1ed48c1bf0851777d2363008090 /libavformat/rtpdec_xiph.c
parentca1e5eea0c7b72a6e30aa6488cfeced3a4853521 (diff)
downloadffmpeg-1263b2039eb5aaf1522e9de9f07c787ab30a5f50.tar.gz
Adjust printf conversion specifiers to match variable signedness
Diffstat (limited to 'libavformat/rtpdec_xiph.c')
-rw-r--r--libavformat/rtpdec_xiph.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavformat/rtpdec_xiph.c b/libavformat/rtpdec_xiph.c
index 5ad6974703..7821686983 100644
--- a/libavformat/rtpdec_xiph.c
+++ b/libavformat/rtpdec_xiph.c
@@ -247,7 +247,7 @@ parse_packed_headers(AVFormatContext *s,
if (num_packed != 1 || num_headers > 3) {
av_log(s, AV_LOG_ERROR,
- "Unimplemented number of headers: %d packed headers, %d headers\n",
+ "Unimplemented number of headers: %u packed headers, %u headers\n",
num_packed, num_headers);
return AVERROR_PATCHWELCOME;
}
@@ -255,7 +255,7 @@ parse_packed_headers(AVFormatContext *s,
if (packed_headers_end - packed_headers != length ||
length1 > length || length2 > length - length1) {
av_log(s, AV_LOG_ERROR,
- "Bad packed header lengths (%d,%d,%td,%d)\n", length1,
+ "Bad packed header lengths (%u,%u,%td,%u)\n", length1,
length2, packed_headers_end - packed_headers, length);
return AVERROR_INVALIDDATA;
}