aboutsummaryrefslogtreecommitdiffstats
path: root/sprintf.c
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-08-19 13:28:32 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-08-19 13:28:32 +0000
commit28dd61607e2e42cd568d8fff7304d406126bd2c3 (patch)
tree16d091f87b062696d4270e2140fb2cf3d72abc35 /sprintf.c
parentf587347c28cd7b9ea445ca8150cfdb62a761523b (diff)
downloadruby-28dd61607e2e42cd568d8fff7304d406126bd2c3.tar.gz
sprintf.c: fix condition
* sprintf.c (rb_str_format): fix condition to round. [ruby-core:64454] [Bug #10151] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@47222 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'sprintf.c')
-rw-r--r--sprintf.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sprintf.c b/sprintf.c
index 19338fb62e..d2bc9f89b5 100644
--- a/sprintf.c
+++ b/sprintf.c
@@ -1045,7 +1045,7 @@ rb_str_format(int argc, const VALUE *argv, VALUE fmt)
sign = -1;
num = rb_funcallv(num, idUMinus, 0, 0);
}
- if (den != INT2FIX(1) && prec > 1) {
+ if (den != INT2FIX(1) || prec > 1) {
const ID idDiv = rb_intern("div");
VALUE p10 = rb_int_positive_pow(10, prec);
VALUE den_2 = rb_funcall(den, idDiv, 1, INT2FIX(2));