[FFmpeg-cvslog] lagarith: Fix typo in printf format string

Diego Biurrun git at videolan.org
Sat Mar 22 23:49:58 CET 2014


ffmpeg | branch: master | Diego Biurrun <diego at biurrun.de> | Sat Mar 22 18:36:33 2014 +0100| [4f4840377f8074c0b8f4c07e5c44226b2d4e79da] | committer: Diego Biurrun

lagarith: Fix typo in printf format string

libavcodec/lagarith.c:671:16: warning: '#' flag used with ‘%u’ gnu_printf format [-Wformat]

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=4f4840377f8074c0b8f4c07e5c44226b2d4e79da
---

 libavcodec/lagarith.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libavcodec/lagarith.c b/libavcodec/lagarith.c
index a4fa6d2..a2b6077 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;
     }
 



More information about the ffmpeg-cvslog mailing list