From 2bd80dd548c2d0e2320802ac9433eba4e855c7ee Mon Sep 17 00:00:00 2001 From: David Mandelin Date: Thu, 5 Aug 2010 16:04:02 -0700 Subject: [PATCH] [JAEGER] Fix MSVC build bustage from recent changesets --- js/src/methodjit/FastArithmetic.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/src/methodjit/FastArithmetic.cpp b/js/src/methodjit/FastArithmetic.cpp index a7fb96ad5cc..89242fa7cb9 100644 --- a/js/src/methodjit/FastArithmetic.cpp +++ b/js/src/methodjit/FastArithmetic.cpp @@ -88,7 +88,7 @@ mjit::Compiler::tryBinaryConstantFold(JSContext *cx, FrameState &frame, JSOp op, } double dL = 0, dR = 0; - int32 nL = 0, nR = 0; + int32_t nL = 0, nR = 0; /* * We don't need to check for conversion failure, since primitive conversion * is infallible.