From: Yaowu Xu Date: Tue, 28 Aug 2012 13:33:24 +0000 (-0700) Subject: silent one more compiler warning X-Git-Tag: v1.2.0~91^2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=446d85e4d7c5109f1d7e14eabf6f2f8761287ece;p=libvpx silent one more compiler warning Change-Id: I621a2bbd5f07691fa76dac36b65f406ad4fed792 --- diff --git a/vp8/decoder/decodemv.c b/vp8/decoder/decodemv.c index 74bec588b..6306eb19b 100644 --- a/vp8/decoder/decodemv.c +++ b/vp8/decoder/decodemv.c @@ -644,7 +644,8 @@ void vp8_decode_mode_mvs(VP8D_COMP *pbi) #if CONFIG_ERROR_CONCEALMENT /* look for corruption. set mvs_corrupt_from_mb to the current * mb_num if the frame is corrupt from this macroblock. */ - if (vp8dx_bool_error(&pbi->bc) && mb_num < pbi->mvs_corrupt_from_mb) + if (vp8dx_bool_error(&pbi->bc) && mb_num < + (int)pbi->mvs_corrupt_from_mb) { pbi->mvs_corrupt_from_mb = mb_num; /* no need to continue since the partition is corrupt from