diff options
author | Edin Kadribasic <edink@php.net> | 2002-09-11 23:09:11 +0000 |
---|---|---|
committer | Edin Kadribasic <edink@php.net> | 2002-09-11 23:09:11 +0000 |
commit | 705e72f3630473e54326cc7d63d59080182ae4cd (patch) | |
tree | 63a789f46c350c87ce72c8ef0a1f740227cecbea | |
parent | 9f4658427f3487bbcb2ee2cd77301b4060c8b833 (diff) | |
download | php-git-705e72f3630473e54326cc7d63d59080182ae4cd.tar.gz |
Fix ZTS build.
-rw-r--r-- | ext/standard/array.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ext/standard/array.c b/ext/standard/array.c index 9e425803c5..e3aaf4cefe 100644 --- a/ext/standard/array.c +++ b/ext/standard/array.c @@ -2621,7 +2621,7 @@ out: } /* }}} */ -static void php_array_diff(INTERNAL_FUNCTION_PARAMETERS, int behavior TSRMLS_DC) +static void php_array_diff(INTERNAL_FUNCTION_PARAMETERS, int behavior) { zval ***args = NULL; HashTable *hash; @@ -2756,7 +2756,7 @@ out: Returns the entries of arr1 that have values which are not present in any of the others arguments */ PHP_FUNCTION(array_diff) { - php_array_diff(INTERNAL_FUNCTION_PARAM_PASSTHRU, 0 TSRMLS_CC); + php_array_diff(INTERNAL_FUNCTION_PARAM_PASSTHRU, 0); } /* }}} */ @@ -2764,7 +2764,7 @@ PHP_FUNCTION(array_diff) Returns the entries of arr1 that have values which are not present in any of the others arguments but do additional checks whether the keys are equal */ PHP_FUNCTION(array_diff_assoc) { - php_array_diff(INTERNAL_FUNCTION_PARAM_PASSTHRU, 1 TSRMLS_CC); + php_array_diff(INTERNAL_FUNCTION_PARAM_PASSTHRU, 1); } /* }}} */ |