From: Andi Gutmans Date: Sat, 11 Jan 2003 17:04:16 +0000 (+0000) Subject: - Fix typo and whitespace X-Git-Tag: PHP_5_0_dev_before_13561_fix~316 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=76c663b3216d0824b762eab7edfbc9e3f09fd3d9;p=php - Fix typo and whitespace --- diff --git a/Zend/zend_execute.c b/Zend/zend_execute.c index 368906f9b1..2c0791359c 100644 --- a/Zend/zend_execute.c +++ b/Zend/zend_execute.c @@ -2556,8 +2556,8 @@ int zend_do_fcall_common_helper(ZEND_OPCODE_HANDLER_ARGS) ALLOC_ZVAL(EX_T(EX(opline)->result.u.var).var.ptr); INIT_ZVAL(*(EX_T(EX(opline)->result.u.var).var.ptr)); - if (! zend_execute_internal) { - /* saves one function hall if the zend_execute_internal is not used */ + if (!zend_execute_internal) { + /* saves one function call if zend_execute_internal is not used */ ((zend_internal_function *) EX(function_state).function)->handler(EX(opline)->extended_value, EX_T(EX(opline)->result.u.var).var.ptr, EX(object), return_value_used TSRMLS_CC); } else { zend_execute_internal(execute_data, return_value_used TSRMLS_CC);