summaryrefslogtreecommitdiff
path: root/numeric.c
diff options
context:
space:
mode:
authormatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-05-07 13:23:24 +0000
committermatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-05-07 13:23:24 +0000
commit274c6471b870cb36475c9e6ca3ef6e82a8250187 (patch)
treefff6acd7d36fa8a1d3d037ec5e70e9d38d6fee9f /numeric.c
parentffd4bf96cc26a767e3ab10548cd5ddd5c1782712 (diff)
* numeric.c (fix_divide): float division should floor() before
rounding into integer. [ruby-dev:34584] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@16314 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'numeric.c')
-rw-r--r--numeric.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/numeric.c b/numeric.c
index ed8b3ff6b7..775f392e52 100644
--- a/numeric.c
+++ b/numeric.c
@@ -2260,7 +2260,7 @@ fix_divide(VALUE x, VALUE y, ID op)
return DOUBLE2NUM(div);
}
else {
- return rb_dbl2big(div);
+ return rb_dbl2big(floor(div));
}
}
default: