From 288dacca0c2107b0e6fdd9adf70adafd744fc3e8 Mon Sep 17 00:00:00 2001 From: Andi Gutmans Date: Mon, 30 Jun 2003 20:22:35 +0000 Subject: - ZE coding style requires if ( instead of if( --- Zend/zend_compile.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Zend/zend_compile.c') 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]; -- cgit v1.2.1