vp9_mvref_common.c: fix compile warning

string literal to int within an assert

Change-Id: Ifd7acc717e01ee1bb3955ef830ec0d1645942459
This commit is contained in:
James Zern 2015-05-20 16:45:16 -07:00
parent 6f41e29064
commit a492bcef87

View File

@ -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.");
}
}