summaryrefslogtreecommitdiff
path: root/Zend/zend_compile.c
diff options
context:
space:
mode:
authorAndi Gutmans <andi@php.net>2003-06-30 20:22:35 +0000
committerAndi Gutmans <andi@php.net>2003-06-30 20:22:35 +0000
commit288dacca0c2107b0e6fdd9adf70adafd744fc3e8 (patch)
tree93f5389b202884c3f113221de5567b30b0b0d0eb /Zend/zend_compile.c
parent5ee72bb4781c38c718b80ad572acc66a213933eb (diff)
downloadphp-git-288dacca0c2107b0e6fdd9adf70adafd744fc3e8.tar.gz
- ZE coding style requires if ( instead of if(
Diffstat (limited to 'Zend/zend_compile.c')
-rw-r--r--Zend/zend_compile.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/Zend/zend_compile.c b/Zend/zend_compile.c
index a876e941ac..9427957925 100644
--- a/Zend/zend_compile.c
+++ b/Zend/zend_compile.c
@@ -1321,9 +1321,9 @@ void zend_do_end_function_call(znode *function_name, znode *result, znode *argum
zend_op *opline;
- if(is_method && function_name && function_name->op_type == IS_UNUSED) {
+ if (is_method && function_name && function_name->op_type == IS_UNUSED) {
/* clone */
- if(argument_list->u.constant.value.lval != 0) {
+ if (argument_list->u.constant.value.lval != 0) {
zend_error(E_WARNING, "Clone method does not require arguments");
}
opline = &CG(active_op_array)->opcodes[function_name->u.constant.value.lval];