Skip to content

Commit 20e15f5

Browse files
committed
one semicolon too much
1 parent d770058 commit 20e15f5

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
@@ -1112,7 +1112,7 @@ ZEND_FUNCTION(gmp_import)
11121112
char *data;
11131113
size_t data_len;
11141114
zend_long size = 1;
1115-
zend_long options = GMP_MSW_FIRST | GMP_NATIVE_ENDIAN;;
1115+
zend_long options = GMP_MSW_FIRST | GMP_NATIVE_ENDIAN;
11161116
int order, endian;
11171117
mpz_ptr gmpnumber;
11181118

@@ -1142,7 +1142,7 @@ ZEND_FUNCTION(gmp_export)
11421142
{
11431143
zval *gmpnumber_arg;
11441144
zend_long size = 1;
1145-
zend_long options = GMP_MSW_FIRST | GMP_NATIVE_ENDIAN;;
1145+
zend_long options = GMP_MSW_FIRST | GMP_NATIVE_ENDIAN;
11461146
int order, endian;
11471147
mpz_ptr gmpnumber;
11481148
gmp_temp_t temp_a;

0 commit comments

Comments
 (0)