Module: libav Branch: master Commit: 4f4840377f8074c0b8f4c07e5c44226b2d4e79da
Author: Diego Biurrun <[email protected]> Committer: Diego Biurrun <[email protected]> Date: Sat Mar 22 18:36:33 2014 +0100 lagarith: Fix typo in printf format string 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 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; } _______________________________________________ libav-commits mailing list [email protected] https://lists.libav.org/mailman/listinfo/libav-commits
