diff --git a/mozilla/js2/src/js2engine.cpp b/mozilla/js2/src/js2engine.cpp index 4feef736ac6..e12960ca18e 100644 --- a/mozilla/js2/src/js2engine.cpp +++ b/mozilla/js2/src/js2engine.cpp @@ -754,7 +754,7 @@ namespace MetaData { activationStackTop->retval = returnVal; activationStackTop++; bCon = new_bCon; - ASSERT(bCon->getMaxStack() <= (execStackLimit - sp)); // XXX realloc if insufficient + ASSERT((int32)bCon->getMaxStack() <= (execStackLimit - sp)); // XXX realloc if insufficient pc = new_bCon->getCodeStart(); phase = execPhase;