mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-28 20:53:54 +02:00
intrax8: Adjust printf conversion specifier for sizeof expression
This commit is contained in:
parent
42244ce07a
commit
6f5ff559db
@ -115,7 +115,8 @@ static av_cold void x8_vlc_init(void){
|
||||
init_or_vlc( j_orient_vlc[1][i], x8_orient_lowquant_table [i][0]);
|
||||
}
|
||||
if (offset != sizeof(table)/sizeof(VLC_TYPE)/2)
|
||||
av_log(NULL, AV_LOG_ERROR, "table size %i does not match needed %i\n", (int)(sizeof(table)/sizeof(VLC_TYPE)/2), offset);
|
||||
av_log(NULL, AV_LOG_ERROR, "table size %zd does not match needed %i\n",
|
||||
sizeof(table) / sizeof(VLC_TYPE) / 2, offset);
|
||||
}
|
||||
#undef init_or_vlc
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user