diff options
Diffstat (limited to 'ext/standard/array.c')
-rw-r--r-- | ext/standard/array.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/standard/array.c b/ext/standard/array.c index 7cc5044434..9216881f8b 100644 --- a/ext/standard/array.c +++ b/ext/standard/array.c @@ -273,7 +273,7 @@ PHP_FUNCTION(count) RETURN_LONG(0); break; case IS_ARRAY: - RETURN_LONG (php_count_recursive (array, mode) TSRMLS_CC); + RETURN_LONG (php_count_recursive (array, mode TSRMLS_CC)); break; default: RETURN_LONG(1); |