From: Zeev Suraski Date: Mon, 29 Oct 2001 09:45:47 +0000 (+0000) Subject: more ws X-Git-Tag: ChangeLog~493 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=2f08cb119c7667ead126dde8cb7aef33a78e1ab4;p=php more ws --- diff --git a/ext/standard/basic_functions.c b/ext/standard/basic_functions.c index d963848078..bed3596a8b 100644 --- a/ext/standard/basic_functions.c +++ b/ext/standard/basic_functions.c @@ -1851,7 +1851,7 @@ PHP_FUNCTION(call_user_func) RETURN_NULL(); } - if (call_user_function_ex(EG(function_table), NULL, *params[0], &retval_ptr, argc - 1, params+1, 0, NULL TSRMLS_CC) == SUCCESS && retval_ptr) { + if (call_user_function_ex(EG(function_table), NULL, *params[0], &retval_ptr, argc-1, params+1, 0, NULL TSRMLS_CC) == SUCCESS && retval_ptr) { COPY_PZVAL_TO_ZVAL(*return_value, retval_ptr); } else { php_error(E_WARNING, "Unable to call %s()", name); @@ -1944,7 +1944,7 @@ PHP_FUNCTION(call_user_method) SEPARATE_ZVAL(params[0]); convert_to_string(*params[0]); - if (call_user_function_ex(EG(function_table), params[1], *params[0], &retval_ptr, arg_count - 2, params+2, 0, NULL TSRMLS_CC) == SUCCESS && retval_ptr) { + if (call_user_function_ex(EG(function_table), params[1], *params[0], &retval_ptr, arg_count-2, params+2, 0, NULL TSRMLS_CC) == SUCCESS && retval_ptr) { COPY_PZVAL_TO_ZVAL(*return_value, retval_ptr); } else { php_error(E_WARNING, "Unable to call %s()", Z_STRVAL_PP(params[0])); @@ -2027,7 +2027,7 @@ static int user_shutdown_function_call(php_shutdown_function_entry *shutdown_fun shutdown_function_entry->arguments[0], &retval, shutdown_function_entry->arg_count - 1, - shutdown_function_entry->arguments+1 + shutdown_function_entry->arguments + 1 TSRMLS_CC ) == SUCCESS ) { zval_dtor(&retval);