summaryrefslogtreecommitdiffhomepage
path: root/src/numeric.c
diff options
context:
space:
mode:
authorYukihiro "Matz" Matsumoto <[email protected]>2014-08-26 02:25:05 +0900
committerYukihiro "Matz" Matsumoto <[email protected]>2014-08-26 02:25:05 +0900
commit73a012c80806c5891579903d1bc1f51b424ce0bf (patch)
tree06a818f4acc7b4ef2fd0954439421532a080bc39 /src/numeric.c
parentecc77829ce76ad18995095bd39ffeae3e3663fac (diff)
parent6961317fb3b4fa30cdb591f568777101720bdb41 (diff)
downloadmruby-73a012c80806c5891579903d1bc1f51b424ce0bf.tar.gz
mruby-73a012c80806c5891579903d1bc1f51b424ce0bf.zip
Merge pull request #2561 from cubicdaiya/issues/space_EOL
Remove spaces in end-of-line.
Diffstat (limited to 'src/numeric.c')
-rw-r--r--src/numeric.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/numeric.c b/src/numeric.c
index 3f211ca70..5cf85fc7d 100644
--- a/src/numeric.c
+++ b/src/numeric.c
@@ -399,7 +399,7 @@ flo_eq(mrb_state *mrb, mrb_value x)
switch (mrb_type(y)) {
case MRB_TT_FIXNUM:
- return mrb_bool_value(mrb_float(x) == (mrb_float)mrb_fixnum(y));
+ return mrb_bool_value(mrb_float(x) == (mrb_float)mrb_fixnum(y));
case MRB_TT_FLOAT:
return mrb_bool_value(mrb_float(x) == mrb_float(y));
default: