From 7804befb55fe66d0cbe780f298fb57155d826044 Mon Sep 17 00:00:00 2001 From: Yunqing Wang Date: Thu, 14 Oct 2010 14:25:03 -0400 Subject: Fix one gcc compiler warning MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ../libvpx/vp8/encoder/bitstream.c: In function ‘pack_inter_mode_mvs’: ../libvpx/vp8/encoder/bitstream.c:1026: warning: array subscript has type ‘char’ Change-Id: Ic77491e0a172fa1821e5b3e914d0dc41fe87c00f --- vp8/common/blockd.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'vp8/common/blockd.h') diff --git a/vp8/common/blockd.h b/vp8/common/blockd.h index 75dd4f79d..db8400ae4 100644 --- a/vp8/common/blockd.h +++ b/vp8/common/blockd.h @@ -169,7 +169,7 @@ typedef struct MV as_mv; } mv; - char partitioning; + unsigned char partitioning; unsigned char mb_skip_coeff; //does this mb has coefficients at all, 1=no coefficients, 0=need decode tokens unsigned char dc_diff; unsigned char need_to_clamp_mvs; -- cgit v1.2.3