You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-09-16 08:36:51 +02:00
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:
@@ -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;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user