summaryrefslogtreecommitdiff
path: root/libavcodec/intrax8.c
diff options
context:
space:
mode:
authorDerek Buitenhuis <derek.buitenhuis@gmail.com>2016-04-17 19:13:25 +0100
committerDerek Buitenhuis <derek.buitenhuis@gmail.com>2016-04-17 19:13:30 +0100
commit7120bff0a32682c568981cb645a6d15a2b532ee0 (patch)
treec06e7a25023f3782b642c8e660a1f25abccc1fb7 /libavcodec/intrax8.c
parent2c3e38f44fd224790bdb8fa789c9d85dc6dbd659 (diff)
parent6f5ff559dbd01fa4ea96bc0a1d2e0c21f2db8d13 (diff)
Merge commit '6f5ff559dbd01fa4ea96bc0a1d2e0c21f2db8d13'
* commit '6f5ff559dbd01fa4ea96bc0a1d2e0c21f2db8d13': intrax8: Adjust printf conversion specifier for sizeof expression Merged-by: Derek Buitenhuis <derek.buitenhuis@gmail.com>
Diffstat (limited to 'libavcodec/intrax8.c')
-rw-r--r--libavcodec/intrax8.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/libavcodec/intrax8.c b/libavcodec/intrax8.c
index 3d34cba294..41ed506da9 100644
--- a/libavcodec/intrax8.c
+++ b/libavcodec/intrax8.c
@@ -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