ext/gmp: Remove redundant parenthesis

This commit is contained in:
Gina Peter Banyard 2024-11-16 16:47:30 +00:00
parent 0b5b9472ff
commit 0800c68be6

View file

@ -1303,7 +1303,7 @@ ZEND_FUNCTION(gmp_perfect_square)
GMP_Z_PARAM_INTO_MPZ_PTR(gmpnum_a)
ZEND_PARSE_PARAMETERS_END();
RETURN_BOOL((mpz_perfect_square_p(gmpnum_a) != 0));
RETURN_BOOL(mpz_perfect_square_p(gmpnum_a) != 0);
}
/* }}} */
@ -1316,7 +1316,7 @@ ZEND_FUNCTION(gmp_perfect_power)
GMP_Z_PARAM_INTO_MPZ_PTR(gmpnum_a)
ZEND_PARSE_PARAMETERS_END();
RETURN_BOOL((mpz_perfect_power_p(gmpnum_a) != 0));
RETURN_BOOL(mpz_perfect_power_p(gmpnum_a) != 0);
}
/* }}} */