From a492bcef874c3358d3803a4be7d8b2b79d5b310f Mon Sep 17 00:00:00 2001 From: James Zern Date: Wed, 20 May 2015 16:45:16 -0700 Subject: [PATCH] vp9_mvref_common.c: fix compile warning string literal to int within an assert Change-Id: Ifd7acc717e01ee1bb3955ef830ec0d1645942459 --- vp9/common/vp9_mvref_common.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vp9/common/vp9_mvref_common.c b/vp9/common/vp9_mvref_common.c index 51e147e00..ce6952752 100644 --- a/vp9/common/vp9_mvref_common.c +++ b/vp9/common/vp9_mvref_common.c @@ -223,6 +223,6 @@ void vp9_append_sub8x8_mvs_for_idx(VP9_COMMON *cm, MACROBLOCKD *xd, break; } default: - assert("Invalid block index."); + assert(0 && "Invalid block index."); } } -- 2.40.0