diff options
author | akr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2014-04-13 03:48:17 +0000 |
---|---|---|
committer | akr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2014-04-13 03:48:17 +0000 |
commit | 9aa67e267b9c8d84e49464ea6f83e6f31c38efca (patch) | |
tree | 4426a07157cf827ff2c60e336a8dbef3d6d2c8ef /rational.c | |
parent | db9d8759eee7d267612d19d0cee8af0e0c6b73c3 (diff) | |
download | ruby-9aa67e267b9c8d84e49464ea6f83e6f31c38efca.tar.gz |
* bignum.c (SIZEOF_BDIGIT): Renamed from SIZEOF_BDIGITS.
* internal.h: Ditto.
* marshal.c: Ditto.
* rational.c: Ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@45580 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'rational.c')
-rw-r--r-- | rational.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/rational.c b/rational.c index be1c9d109a..932fc53fbb 100644 --- a/rational.c +++ b/rational.c @@ -273,7 +273,7 @@ k_rational_p(VALUE x) VALUE rb_gcd_gmp(VALUE x, VALUE y) { - const size_t nails = (sizeof(BDIGIT)-SIZEOF_BDIGITS)*CHAR_BIT; + const size_t nails = (sizeof(BDIGIT)-SIZEOF_BDIGIT)*CHAR_BIT; mpz_t mx, my, mz; size_t count; VALUE z; @@ -287,7 +287,7 @@ rb_gcd_gmp(VALUE x, VALUE y) mpz_gcd(mz, mx, my); - zn = (mpz_sizeinbase(mz, 16) + SIZEOF_BDIGITS*2 - 1) / (SIZEOF_BDIGITS*2); + zn = (mpz_sizeinbase(mz, 16) + SIZEOF_BDIGIT*2 - 1) / (SIZEOF_BDIGIT*2); z = rb_big_new(zn, 1); mpz_export(BIGNUM_DIGITS(z), &count, -1, sizeof(BDIGIT), 0, nails, mz); |