Skip to content

Commit 9ae23e6

Browse files
authored
Fix CI to adopt in C23...
1 parent 52a14b3 commit 9ae23e6

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

ext/gmp/gmp.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -347,9 +347,9 @@ static zend_result shift_operator_helper(gmp_binary_ui_op_t op, zval *return_val
347347

348348
if (UNEXPECTED(Z_TYPE_P(op2) != IS_LONG)) {
349349
if (UNEXPECTED(!IS_GMP(op2))) {
350+
bool failed;
350351
switch (Z_TYPE_P(op2)) {
351352
case IS_DOUBLE:
352-
bool failed;
353353
shift = zval_try_get_long(op2, &failed);
354354
if (UNEXPECTED(failed)) {
355355
return FAILURE;

0 commit comments

Comments
 (0)