lagarith: Fix typo in printf format string
libavcodec/lagarith.c:671:16: warning: '#' flag used with ‘%u’ gnu_printf format [-Wformat]
This commit is contained in:
parent
57f09608e1
commit
4f4840377f
@ -668,7 +668,7 @@ static int lag_decode_frame(AVCodecContext *avctx,
|
|||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
av_log(avctx, AV_LOG_ERROR,
|
av_log(avctx, AV_LOG_ERROR,
|
||||||
"Unsupported Lagarith frame type: %#"PRIu8"\n", frametype);
|
"Unsupported Lagarith frame type: %#"PRIx8"\n", frametype);
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user