diff options
| author | Yukihiro "Matz" Matsumoto <[email protected]> | 2013-11-09 06:29:35 -0800 |
|---|---|---|
| committer | Yukihiro "Matz" Matsumoto <[email protected]> | 2013-11-09 06:29:35 -0800 |
| commit | a9d8357d69773414d38bbe00e6086dfcf3008eeb (patch) | |
| tree | 714345fc6b838d504247d3b0fe9c295364c1c27c /src/numeric.c | |
| parent | ec0a94dae6c08b427af2df3434704cf30b6f1edb (diff) | |
| parent | 0d0f3545f8f2bdf87f7c4256113e801a18b4a541 (diff) | |
| download | mruby-a9d8357d69773414d38bbe00e6086dfcf3008eeb.tar.gz mruby-a9d8357d69773414d38bbe00e6086dfcf3008eeb.zip | |
Merge pull request #1566 from carsonmcdonald/supresstosuppress
Change supress to suppress
Diffstat (limited to 'src/numeric.c')
| -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 ccb67bcc3..4a22c23c7 100644 --- a/src/numeric.c +++ b/src/numeric.c @@ -1071,7 +1071,7 @@ mrb_flo_to_fixnum(mrb_state *mrb, mrb_value x) if (mrb_float_p(x)) { mrb_raise(mrb, E_TYPE_ERROR, "non float value"); - z = 0; /* not reached. just supress warnings. */ + z = 0; /* not reached. just suppress warnings. */ } else { mrb_float d = mrb_float(x); |
