summaryrefslogtreecommitdiff
path: root/random.c
diff options
context:
space:
mode:
Diffstat (limited to 'random.c')
-rw-r--r--random.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/random.c b/random.c
index 6adfc59eb0..e9dbf3e26c 100644
--- a/random.c
+++ b/random.c
@@ -119,7 +119,7 @@ static VALUE
f_rand(obj, vmax)
VALUE obj, vmax;
{
- int val, max;
+ long val, max;
switch (TYPE(vmax)) {
case T_BIGNUM:
@@ -131,7 +131,7 @@ f_rand(obj, vmax)
break;
}
- max = NUM2INT(vmax);
+ max = NUM2LONG(vmax);
if (max == 0) {
return float_new(RANDOM_NUMBER);
}