Skip to content

Commit 78f5ebf

Browse files
committed
Address code review comments
1 parent 172bdd5 commit 78f5ebf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ext/standard/array.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2553,7 +2553,7 @@ PHP_FUNCTION(array_fill)
25532553

25542554
if (EXPECTED(num > 0)) {
25552555
if (sizeof(num) > 4 && UNEXPECTED(EXPECTED(num > 0x7fffffff))) {
2556-
zend_argument_value_error(2, "is too big");
2556+
zend_argument_value_error(2, "is too large");
25572557
RETURN_THROWS();
25582558
} else if (UNEXPECTED(start_key > ZEND_LONG_MAX - num + 1)) {
25592559
zend_throw_error(NULL, "Cannot add element to the array as the next element is already occupied");

0 commit comments

Comments
 (0)