diff options
| author | Yukihiro "Matz" Matsumoto <[email protected]> | 2014-02-06 21:16:24 +0900 |
|---|---|---|
| committer | Yukihiro "Matz" Matsumoto <[email protected]> | 2014-02-06 21:16:24 +0900 |
| commit | c3f02afa213baaeaa78fe89e624b751a4ae6275d (patch) | |
| tree | 3ddb9aaf2073851566281ab58919693674c13357 | |
| parent | 7ba46129561f5fa3a4b1599d6f31fec1cbba6f04 (diff) | |
| parent | 360d92dc2826b2ae6c449658df69cfe8c4540984 (diff) | |
| download | mruby-c3f02afa213baaeaa78fe89e624b751a4ae6275d.tar.gz mruby-c3f02afa213baaeaa78fe89e624b751a4ae6275d.zip | |
Merge pull request #1688 from cubicdaiya/issues/unnecessary_semicolon
Remove unnecessary semicolon
| -rw-r--r-- | src/numeric.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/numeric.c b/src/numeric.c index eb6a4d8ec..709a8e1e3 100644 --- a/src/numeric.c +++ b/src/numeric.c @@ -663,7 +663,7 @@ mrb_fixnum_mul(mrb_state *mrb, mrb_value x, mrb_value y) if (a != 0 && c/a != b) { return mrb_float_value(mrb, (mrb_float)a*(mrb_float)b); } - return mrb_fixnum_value(c);; + return mrb_fixnum_value(c); } return mrb_float_value(mrb, (mrb_float)a * mrb_to_flo(mrb, y)); } |
