diff options
author | Diego Biurrun <diego@biurrun.de> | 2014-03-22 18:36:33 +0100 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2014-03-22 18:36:33 +0100 |
commit | 4f4840377f8074c0b8f4c07e5c44226b2d4e79da (patch) | |
tree | d0c04b48af3e22b4f3c6940e45791beb6048ef9a /libavcodec/lagarith.c | |
parent | 57f09608e1600d1cf1679885a46f5004d522d68f (diff) | |
download | ffmpeg-4f4840377f8074c0b8f4c07e5c44226b2d4e79da.tar.gz |
lagarith: Fix typo in printf format string
libavcodec/lagarith.c:671:16: warning: '#' flag used with ā%uā gnu_printf format [-Wformat]
Diffstat (limited to 'libavcodec/lagarith.c')
-rw-r--r-- | libavcodec/lagarith.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; } |