Skip to content

Commit c605d47

Browse files
committed
fixup! Try to silence bogus compiler warning
1 parent afaa65e commit c605d47

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ext/standard/array.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6765,11 +6765,11 @@ PHP_FUNCTION(array_all)
67656765
PHP_FUNCTION(array_map)
67666766
{
67676767
zval *arrays = NULL;
6768-
int n_arrays = 0;
6768+
uint32_t n_arrays = 0;
67696769
zval result;
67706770
zend_fcall_info fci;
67716771
zend_fcall_info_cache fci_cache;
6772-
int i;
6772+
uint32_t i;
67736773
uint32_t k, maxlen = 0;
67746774

67756775
ZEND_PARSE_PARAMETERS_START(2, -1)

0 commit comments

Comments
 (0)