Skip to content

Commit 1a3d836

Browse files
committed
Fix CS (missing space)
1 parent cd363a9 commit 1a3d836

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
@@ -2598,7 +2598,7 @@ PHP_FUNCTION(array_fill)
25982598
ZEND_PARSE_PARAMETERS_END();
25992599

26002600
if (EXPECTED(num > 0)) {
2601-
if (sizeof(num) > 4 && UNEXPECTED(num >INT_MAX)) {
2601+
if (sizeof(num) > 4 && UNEXPECTED(num > INT_MAX)) {
26022602
zend_argument_value_error(2, "is too large");
26032603
RETURN_THROWS();
26042604
} else if (UNEXPECTED(start_key > ZEND_LONG_MAX - num + 1)) {

0 commit comments

Comments
 (0)