Skip to content

Commit abfa248

Browse files
committed
false instead of 0
1 parent e61d0b6 commit abfa248

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

ext/gmp/gmp.c

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -370,8 +370,7 @@ static int gmp_do_operation_ex(zend_uchar opcode, zval *result, zval *op1, zval
370370
{
371371
switch (opcode) {
372372
case ZEND_ADD:
373-
gmp_zval_binary_ui_op(
374-
result, op1, op2, mpz_add, mpz_add_ui, 0, /* is_operator */ true);
373+
gmp_zval_binary_ui_op(result, op1, op2, mpz_add, mpz_add_ui, false, true);
375374
if (UNEXPECTED(EG(exception))) { return FAILURE; }
376375
return SUCCESS;
377376
case ZEND_SUB:

0 commit comments

Comments
 (0)