diff options
author | Andi Gutmans <andi@php.net> | 2002-09-15 07:45:26 +0000 |
---|---|---|
committer | Andi Gutmans <andi@php.net> | 2002-09-15 07:45:26 +0000 |
commit | 43139dc7553956d57619f2429230d1ac6ad72fd4 (patch) | |
tree | 082e26b0449ba3e974eeadd4ce28c69be94cf450 /Zend/zend_execute_API.c | |
parent | fcc0ce7eec7288c3dd875d45f6d957b5b4b0b288 (diff) | |
download | php-git-43139dc7553956d57619f2429230d1ac6ad72fd4.tar.gz |
- WS - Always use "if (" and not "if("
Diffstat (limited to 'Zend/zend_execute_API.c')
-rw-r--r-- | Zend/zend_execute_API.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Zend/zend_execute_API.c b/Zend/zend_execute_API.c index 4ccb9dd56c..b606d416d8 100644 --- a/Zend/zend_execute_API.c +++ b/Zend/zend_execute_API.c @@ -514,7 +514,7 @@ int call_user_function_ex(HashTable *function_table, zval **object_pp, zval *fun if (object_pp) { /* TBI!! new object handlers */ if (Z_TYPE_PP(object_pp) == IS_OBJECT) { - if(!IS_ZEND_STD_OBJECT(**object_pp)) { + if (!IS_ZEND_STD_OBJECT(**object_pp)) { zend_error(E_WARNING, "Cannot use call_user_function on overloaded objects"); return FAILURE; } |