summaryrefslogtreecommitdiff
path: root/numeric.c
diff options
context:
space:
mode:
authornaruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2011-03-22 01:08:49 +0000
committernaruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2011-03-22 01:08:49 +0000
commit2c1936cf87184470308b6bf3f0fe70f1a99936af (patch)
tree5106a7c0d110bdeb516cec6a948803901cb737a5 /numeric.c
parent12d17449532803979139cce212124f0e17a4728d (diff)
* numeric.c (flo_round): use pow instead of while-loop. fixes #4510
patched by Alex Young [ruby-core:35526] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@31146 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'numeric.c')
-rw-r--r--numeric.c7
1 files changed, 2 insertions, 5 deletions
diff --git a/numeric.c b/numeric.c
index a2fab9b31b..0f316fad93 100644
--- a/numeric.c
+++ b/numeric.c
@@ -1479,17 +1479,14 @@ flo_round(int argc, VALUE *argv, VALUE num)
{
VALUE nd;
double number, f;
- int ndigits = 0, i;
+ int ndigits = 0;
long val;
if (argc > 0 && rb_scan_args(argc, argv, "01", &nd) == 1) {
ndigits = NUM2INT(nd);
}
number = RFLOAT_VALUE(num);
- f = 1.0;
- i = abs(ndigits);
- while (--i >= 0)
- f = f*10.0;
+ f = pow(10, abs(ndigits));
if (isinf(f)) {
if (ndigits < 0) number = 0;