From b69f3b5de221f1a603eb839f156ec89d5716067a Mon Sep 17 00:00:00 2001 From: "rogerl%netscape.com" Date: Mon, 11 Nov 2002 18:36:12 +0000 Subject: [PATCH] signed/unsigned comparison. --- js2/src/js2engine.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js2/src/js2engine.cpp b/js2/src/js2engine.cpp index 4feef736ac6..e12960ca18e 100644 --- a/js2/src/js2engine.cpp +++ b/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;