Skip to content

Commit 0800c68

Browse files
committed
ext/gmp: Remove redundant parenthesis
1 parent 0b5b947 commit 0800c68

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ext/gmp/gmp.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1303,7 +1303,7 @@ ZEND_FUNCTION(gmp_perfect_square)
13031303
GMP_Z_PARAM_INTO_MPZ_PTR(gmpnum_a)
13041304
ZEND_PARSE_PARAMETERS_END();
13051305

1306-
RETURN_BOOL((mpz_perfect_square_p(gmpnum_a) != 0));
1306+
RETURN_BOOL(mpz_perfect_square_p(gmpnum_a) != 0);
13071307
}
13081308
/* }}} */
13091309

@@ -1316,7 +1316,7 @@ ZEND_FUNCTION(gmp_perfect_power)
13161316
GMP_Z_PARAM_INTO_MPZ_PTR(gmpnum_a)
13171317
ZEND_PARSE_PARAMETERS_END();
13181318

1319-
RETURN_BOOL((mpz_perfect_power_p(gmpnum_a) != 0));
1319+
RETURN_BOOL(mpz_perfect_power_p(gmpnum_a) != 0);
13201320
}
13211321
/* }}} */
13221322

0 commit comments

Comments
 (0)