Fixed signed/unsigned compare warning

This commit is contained in:
David Mandelin 2009-02-03 10:59:24 -08:00
Родитель 71f3920afd
Коммит 488a3b8022
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -3009,7 +3009,7 @@ js_CheckGlobalObjectShape(JSContext* cx, JSTraceMonitor* tm, JSObject* globalObj
GlobalState &state = tm->globalStates[i];
if (state.globalShape == -1) {
if (state.globalShape == (uint32) -1) {
state.globalShape = globalShape;
JS_ASSERT(state.globalSlots);
JS_ASSERT(state.globalSlots->length() == 0);