summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorgit <svn@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2019-08-03 10:25:20 +0900
committergit <svn@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2019-08-03 10:25:20 +0900
commitfb96bea7ed8ed6765fda2a1db90a2cfce14e59b7 (patch)
tree99ab3ff6361ee22f115257ffa62f9a4c033b21dd
parent4ea5c5610aeadecf78fdd2b7d6faad8574953620 (diff)
* expand tabs.
-rw-r--r--bignum.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/bignum.c b/bignum.c
index 2818b05b1e..6edb7f0dc3 100644
--- a/bignum.c
+++ b/bignum.c
@@ -6126,7 +6126,7 @@ rb_big_divmod(VALUE x, VALUE y)
y = rb_int2big(FIX2LONG(y));
}
else if (!RB_BIGNUM_TYPE_P(y)) {
- return rb_num_coerce_bin(x, y, idDivmod);
+ return rb_num_coerce_bin(x, y, idDivmod);
}
bigdivmod(x, y, &div, &mod);
@@ -6214,7 +6214,7 @@ rb_big_fdiv_double(VALUE x, VALUE y)
return big_fdiv_float(x, y);
}
else {
- return NUM2DBL(rb_num_coerce_bin(x, y, idFdiv));
+ return NUM2DBL(rb_num_coerce_bin(x, y, idFdiv));
}
v = rb_flo_div_flo(DBL2NUM(dx), DBL2NUM(dy));
return NUM2DBL(v);