[JAEGER] Fixed build.

This commit is contained in:
David Anderson
2010-06-20 16:16:51 -07:00
parent 7811b3dd93
commit 63513eca81

View File

@@ -1835,7 +1835,7 @@ mjit::Compiler::jsop_length()
if (top->isConstant()) {
JSString *str = top->getValue().asString();
Value v;
v.setNumber(str->length());
v.setNumber(uint32(str->length()));
frame.pop();
frame.push(v);
} else {