From 4316e6c2d3887bc5ff4abe77385b04efeb05aac2 Mon Sep 17 00:00:00 2001 From: "ager@chromium.org" Date: Tue, 9 Sep 2008 08:06:27 +0000 Subject: [PATCH] Fix the debug build. git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@228 ce2b1a6d-e550-0410-aec6-3dcde31c8c00 --- src/runtime.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/runtime.cc b/src/runtime.cc index 88e9101a6..0f7797cb0 100644 --- a/src/runtime.cc +++ b/src/runtime.cc @@ -3447,7 +3447,7 @@ static Object* Runtime_SetNewFunctionAttributes(Arguments args) { // array. Returns true if the element was pushed on the stack and // false otherwise. static Object* Runtime_PushIfAbsent(Arguments args) { - ASSERT(args.length == 2); + ASSERT(args.length() == 2); CONVERT_CHECKED(JSArray, array, args[0]); CONVERT_CHECKED(JSArray, element, args[1]); CHECK(array->HasFastElements()); -- 2.34.1