mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Fix signed vs. unsigned comparison in assertion warning.
This commit is contained in:
parent
92c51991b0
commit
34b45d63e8
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user