aboutsummaryrefslogtreecommitdiffstats
path: root/bignum.c
diff options
context:
space:
mode:
authorakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-07-02 14:49:06 +0000
committerakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-07-02 14:49:06 +0000
commitc78826190f5af562cb725c050ff09d439e27b5eb (patch)
tree21dabeb6ac85198f9025462b4801f6caea27548a /bignum.c
parentd74bb62dcceff8810cc60097adfe324ef9dbebc0 (diff)
downloadruby-c78826190f5af562cb725c050ff09d439e27b5eb.tar.gz
* bignum.c (roomof): Cast to long.
(rb_ull2big): Fix bignew arguments. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@41750 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'bignum.c')
-rw-r--r--bignum.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/bignum.c b/bignum.c
index 7ecfb89a86..20bc8512cd 100644
--- a/bignum.c
+++ b/bignum.c
@@ -80,7 +80,7 @@ static VALUE big_three = Qnil;
rb_absint_size(x, NULL))
#define BIGDIVREM_EXTRA_WORDS 2
-#define roomof(n, m) ((int)(((n)+(m)-1) / (m)))
+#define roomof(n, m) ((long)(((n)+(m)-1) / (m)))
#define bdigit_roomof(n) roomof(n, SIZEOF_BDIGITS)
#define BARY_ARGS(ary) ary, numberof(ary)
@@ -2199,7 +2199,7 @@ static VALUE
rb_ull2big(unsigned LONG_LONG n)
{
long i;
- VALUE big = bignew(DIGSPERLL, bdigit_roomof(SIZEOF_LONG_LONG));
+ VALUE big = bignew(bdigit_roomof(SIZEOF_LONG_LONG), 1);
BDIGIT *digits = BDIGITS(big);
#if SIZEOF_BDIGITS >= SIZEOF_LONG_LONG