diff options
author | Andrey Hristov <andrey@php.net> | 2002-09-12 08:20:37 +0000 |
---|---|---|
committer | Andrey Hristov <andrey@php.net> | 2002-09-12 08:20:37 +0000 |
commit | 23d3cd79c178da11b5f76b75eb6982fe35554f26 (patch) | |
tree | c5926b67a099b2476776a0fdbc9ca0e8eff6e17a /ext | |
parent | ad9243463890c94ecc4d41e0b5947907cd12800b (diff) | |
download | php-git-23d3cd79c178da11b5f76b75eb6982fe35554f26.tar.gz |
Fixing my zts fix.
#Sorry Edin
Diffstat (limited to 'ext')
-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 2685992c67..046d65621f 100644 --- a/ext/standard/array.c +++ b/ext/standard/array.c @@ -2624,7 +2624,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; @@ -2759,7 +2759,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, DIFF_NORMAL TSRMLS_CC); + php_array_diff(INTERNAL_FUNCTION_PARAM_PASSTHRU, DIFF_NORMAL); } /* }}} */ @@ -2767,7 +2767,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, DIFF_ASSOC TSRMLS_CC); + php_array_diff(INTERNAL_FUNCTION_PARAM_PASSTHRU, DIFF_ASSOC); } /* }}} */ |