Commit 4f484037 authored by Diego Biurrun's avatar Diego Biurrun

lagarith: Fix typo in printf format string

libavcodec/lagarith.c:671:16: warning: '#' flag used with ‘%u’ gnu_printf format [-Wformat]
parent 57f09608
......@@ -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;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment