diff options
author | Diego Biurrun <diego@biurrun.de> | 2015-12-15 10:50:18 +0100 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2016-10-28 11:22:21 +0200 |
commit | 1263b2039eb5aaf1522e9de9f07c787ab30a5f50 (patch) | |
tree | 476a8f24a973d1ed48c1bf0851777d2363008090 /libavcodec/fraps.c | |
parent | ca1e5eea0c7b72a6e30aa6488cfeced3a4853521 (diff) | |
download | ffmpeg-1263b2039eb5aaf1522e9de9f07c787ab30a5f50.tar.gz |
Adjust printf conversion specifiers to match variable signedness
Diffstat (limited to 'libavcodec/fraps.c')
-rw-r--r-- | libavcodec/fraps.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/fraps.c b/libavcodec/fraps.c index eb61c70c49..c4ec23e281 100644 --- a/libavcodec/fraps.c +++ b/libavcodec/fraps.c @@ -164,7 +164,7 @@ static int decode_frame(AVCodecContext *avctx, if (version > 5) { av_log(avctx, AV_LOG_ERROR, - "This file is encoded with Fraps version %d. " \ + "This file is encoded with Fraps version %u. " "This codec can only decode versions <= 5.\n", version); return AVERROR_PATCHWELCOME; } |