From 43139dc7553956d57619f2429230d1ac6ad72fd4 Mon Sep 17 00:00:00 2001 From: Andi Gutmans Date: Sun, 15 Sep 2002 07:45:26 +0000 Subject: - WS - Always use "if (" and not "if(" --- Zend/zend_API.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Zend/zend_API.c') diff --git a/Zend/zend_API.c b/Zend/zend_API.c index f1acf85024..10f8f3477d 100644 --- a/Zend/zend_API.c +++ b/Zend/zend_API.c @@ -590,7 +590,7 @@ ZEND_API int _object_and_properties_init(zval *arg, zend_class_entry *class_type } arg->type = IS_OBJECT; - if(class_type->create_object == NULL) { + if (class_type->create_object == NULL) { arg->value.obj = zend_objects_new(&object, class_type); if (properties) { object->properties = properties; -- cgit v1.2.1