Skip to content

Commit ec4d9f3

Browse files
committed
fix 64-bit
1 parent e60e9ae commit ec4d9f3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ext/gmp/gmp.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -1523,7 +1523,7 @@ ZEND_FUNCTION(gmp_clrbit)
15231523
ZEND_FUNCTION(gmp_testbit)
15241524
{
15251525
zval **a_arg;
1526-
int index;
1526+
long index;
15271527
mpz_t *gmpnum_a;
15281528

15291529
if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "Zl", &a_arg, &index) == FAILURE){

0 commit comments

Comments
 (0)