Skip to content

Commit c924641

Browse files
committed
ext/gmp: Remove redundant parenthesis
1 parent 5d2b473 commit c924641

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
@@ -1299,7 +1299,7 @@ ZEND_FUNCTION(gmp_perfect_square)
12991299
GMP_Z_PARAM_INTO_MPZ_PTR(gmpnum_a)
13001300
ZEND_PARSE_PARAMETERS_END();
13011301

1302-
RETURN_BOOL((mpz_perfect_square_p(gmpnum_a) != 0));
1302+
RETURN_BOOL(mpz_perfect_square_p(gmpnum_a) != 0);
13031303
}
13041304
/* }}} */
13051305

@@ -1312,7 +1312,7 @@ ZEND_FUNCTION(gmp_perfect_power)
13121312
GMP_Z_PARAM_INTO_MPZ_PTR(gmpnum_a)
13131313
ZEND_PARSE_PARAMETERS_END();
13141314

1315-
RETURN_BOOL((mpz_perfect_power_p(gmpnum_a) != 0));
1315+
RETURN_BOOL(mpz_perfect_power_p(gmpnum_a) != 0);
13161316
}
13171317
/* }}} */
13181318

0 commit comments

Comments
 (0)