diff options
author | Sara Golemon <pollita@php.net> | 2003-03-13 16:10:21 +0000 |
---|---|---|
committer | Sara Golemon <pollita@php.net> | 2003-03-13 16:10:21 +0000 |
commit | cbf8c3e3465f69ab08253e48b03f9c4281e68c06 (patch) | |
tree | dbbfd75362f532c9661e2b6a82654616a7477903 /ext/gmp | |
parent | de87d3fda3f34e08592abc996d692c2f399b37dc (diff) | |
download | php-git-cbf8c3e3465f69ab08253e48b03f9c4281e68c06.tar.gz |
Bug #21534. Silly typo.
Diffstat (limited to 'ext/gmp')
-rw-r--r-- | ext/gmp/gmp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/gmp/gmp.c b/ext/gmp/gmp.c index 8a78bde5bd..21b3380775 100644 --- a/ext/gmp/gmp.c +++ b/ext/gmp/gmp.c @@ -915,7 +915,7 @@ ZEND_FUNCTION(gmp_gcdext) } FETCH_GMP_ZVAL(gmpnum_a, a_arg); - FETCH_GMP_ZVAL(gmpnum_b, a_arg); + FETCH_GMP_ZVAL(gmpnum_b, b_arg); INIT_GMP_NUM(gmpnum_g); INIT_GMP_NUM(gmpnum_s); |