Skip to content

Commit 67edce7

Browse files
committed
DEBUG fix macro expand
1 parent e7f9864 commit 67edce7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ext/gmp/gmp.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -371,7 +371,7 @@ static int gmp_do_operation_ex(zend_uchar opcode, zval *result, zval *op1, zval
371371
switch (opcode) {
372372
case ZEND_ADD:
373373
gmp_zval_binary_ui_op(
374-
result, op1, op2, mpz_add, mpz_add ## _ui, 0, /* is_operator */ true);
374+
result, op1, op2, mpz_add, mpz_add_ui, 0, /* is_operator */ true);
375375
if (UNEXPECTED(EG(exception))) { return FAILURE; }
376376
return SUCCESS;
377377
case ZEND_SUB:

0 commit comments

Comments
 (0)