From 4f4840377f8074c0b8f4c07e5c44226b2d4e79da Mon Sep 17 00:00:00 2001 From: Diego Biurrun Date: Sat, 22 Mar 2014 18:36:33 +0100 Subject: [PATCH] lagarith: Fix typo in printf format string MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit libavcodec/lagarith.c:671:16: warning: '#' flag used with ā€˜%uā€™ gnu_printf format [-Wformat] --- libavcodec/lagarith.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavcodec/lagarith.c b/libavcodec/lagarith.c index a4fa6d2a4c..a2b6077565 100644 --- a/libavcodec/lagarith.c +++ b/libavcodec/lagarith.c @@ -668,7 +668,7 @@ static int lag_decode_frame(AVCodecContext *avctx, break; default: av_log(avctx, AV_LOG_ERROR, - "Unsupported Lagarith frame type: %#"PRIu8"\n", frametype); + "Unsupported Lagarith frame type: %#"PRIx8"\n", frametype); return -1; }