Commit 7120bff0 authored by Derek Buitenhuis's avatar Derek Buitenhuis

Merge commit '6f5ff559'

* commit '6f5ff559':
  intrax8: Adjust printf conversion specifier for sizeof expression
Merged-by: 's avatarDerek Buitenhuis <derek.buitenhuis@gmail.com>
parents 2c3e38f4 6f5ff559
......@@ -116,7 +116,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
......
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