Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorClément Bœsch <u@pkh.me>2017-03-24 15:29:45 +0300
committerClément Bœsch <u@pkh.me>2017-03-24 15:34:39 +0300
commit46f4f8ad865d4e4d867d14edb44a656318951ec1 (patch)
tree0e85a99befbcfc982b98ebc3ac994fbbdd470ec0 /libavcodec/fraps.c
parent1436769c57cc6e5209609073e5fd60776a293669 (diff)
parent1263b2039eb5aaf1522e9de9f07c787ab30a5f50 (diff)
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 'libavcodec/fraps.c')
-rw-r--r--libavcodec/fraps.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/fraps.c b/libavcodec/fraps.c
index ed8cb180de..d5fb919247 100644
--- a/libavcodec/fraps.c
+++ b/libavcodec/fraps.c
@@ -161,7 +161,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;
}