diff options
| author | Ilia Alshanetsky <iliaa@php.net> | 2003-01-21 14:56:40 +0000 |
|---|---|---|
| committer | Ilia Alshanetsky <iliaa@php.net> | 2003-01-21 14:56:40 +0000 |
| commit | 8a9e09a44a0959d6c3317085f5665095cb950074 (patch) | |
| tree | edb3ada0102b4b42f5f632fcfddd1344b5bc6348 /ext/standard/array.c | |
| parent | 832545d97ff7975adf0cf84e8b373b1d01391537 (diff) | |
| download | php-git-8a9e09a44a0959d6c3317085f5665095cb950074.tar.gz | |
ARG_COUNT(ht) -> ZEND_NUM_ARGS().
Diffstat (limited to 'ext/standard/array.c')
| -rw-r--r-- | ext/standard/array.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/standard/array.c b/ext/standard/array.c index 74f372e84f..3a91e5bcdf 100644 --- a/ext/standard/array.c +++ b/ext/standard/array.c @@ -2625,7 +2625,7 @@ static void php_array_intersect(INTERNAL_FUNCTION_PARAMETERS, int behavior) Bucket ***lists, **list, ***ptrs, *p; /* Get the argument count and check it */ - argc = ARG_COUNT(ht); + argc = ZEND_NUM_ARGS(); if (argc < 2) { WRONG_PARAM_COUNT; } @@ -2773,7 +2773,7 @@ static void php_array_diff(INTERNAL_FUNCTION_PARAMETERS, int behavior) Bucket ***lists, **list, ***ptrs, *p; /* Get the argument count and check it */ - argc = ARG_COUNT(ht); + argc = ZEND_NUM_ARGS(); if (argc < 2) { WRONG_PARAM_COUNT; } |
