Fix signed vs. unsigned comparison in assertion warning.

This commit is contained in:
brendan@mozilla.org 2008-03-05 15:43:33 -08:00
Родитель 516adb4afa
Коммит 9c4ceb9614
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -5100,7 +5100,7 @@ ReconstructPCStack(JSContext *cx, JSScript *script, jsbytecode *pc,
ndefs = OBJ_BLOCK_COUNT(cx, obj);
}
LOCAL_ASSERT(pcdepth + ndefs <= script->depth);
LOCAL_ASSERT((uintN)(pcdepth + ndefs) <= script->depth);
if (pcstack) {
intN i;
jsbytecode *pc2;