Style nit (no bug, no code change).

This commit is contained in:
Andreas Gal 2009-02-28 18:40:59 -08:00
Родитель 452002b30c
Коммит de88abeac8
1 изменённых файлов: 3 добавлений и 4 удалений

Просмотреть файл

@ -2633,9 +2633,8 @@ js_InitEval(JSContext *cx, JSObject *obj)
JSObject * JSObject *
js_InitObjectClass(JSContext *cx, JSObject *obj) js_InitObjectClass(JSContext *cx, JSObject *obj)
{ {
JSObject *proto; JSObject *proto = JS_InitClass(cx, obj, NULL, &js_ObjectClass, js_Object,
proto = JS_InitClass(cx, obj, NULL, &js_ObjectClass, js_Object, 1, 1, object_props, object_methods, NULL,
object_props, object_methods, NULL,
object_static_methods); object_static_methods);
#ifdef JS_TRACER #ifdef JS_TRACER
if (proto) if (proto)