]> git.sesse.net Git - ffmpeg/blobdiff - libavcodec/apedec.c
Fix all -Wformat warnings raised by DJGPP
[ffmpeg] / libavcodec / apedec.c
index b99598b4ee74ed3b5ac762a5f1a980824455fa07..a6b14b8e247c7ec84f346e4581f9d38146139281 100644 (file)
@@ -495,7 +495,7 @@ static inline int ape_decode_value_3860(APEContext *ctx, GetBitContext *gb,
     else if(rice->k <= MIN_CACHE_BITS) {
         x = (overflow << rice->k) + get_bits(gb, rice->k);
     } else {
-        av_log(ctx->avctx, AV_LOG_ERROR, "Too many bits: %d\n", rice->k);
+        av_log(ctx->avctx, AV_LOG_ERROR, "Too many bits: %"PRIu32"\n", rice->k);
         return AVERROR_INVALIDDATA;
     }
     rice->ksum += x - (rice->ksum + 8 >> 4);