diff options
| author | Yukihiro "Matz" Matsumoto <[email protected]> | 2013-07-06 10:08:42 -0700 |
|---|---|---|
| committer | Yukihiro "Matz" Matsumoto <[email protected]> | 2013-07-06 10:08:42 -0700 |
| commit | 5f74721e02c3a58d10915afe973917ac6c62ccef (patch) | |
| tree | d82c85e504453c8d24e8ee9341c8125ac71058e1 /src | |
| parent | bccf1259f528e1605308b9cf005ad4f10897e592 (diff) | |
| parent | 9a5e78ae6771c272352d6b59bef264ccac2150ec (diff) | |
| download | mruby-5f74721e02c3a58d10915afe973917ac6c62ccef.tar.gz mruby-5f74721e02c3a58d10915afe973917ac6c62ccef.zip | |
Merge pull request #1348 from carsonmcdonald/shiftwarningfix
Fix signed/unsigned warning in numeric shift
Diffstat (limited to 'src')
| -rw-r--r-- | src/numeric.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/numeric.c b/src/numeric.c index 6cd82d8b6..e1543c089 100644 --- a/src/numeric.c +++ b/src/numeric.c @@ -998,7 +998,7 @@ fix_xor(mrb_state *mrb, mrb_value x) #define NUMERIC_SHIFT_WIDTH_MAX (sizeof(mrb_int)*CHAR_BIT-1) static mrb_value -lshift(mrb_state *mrb, mrb_int val, int width) +lshift(mrb_state *mrb, mrb_int val, size_t width) { if (width > NUMERIC_SHIFT_WIDTH_MAX) { mrb_raisef(mrb, E_RANGE_ERROR, "width(%S) > (%S:sizeof(mrb_int)*CHAR_BIT-1)", @@ -1010,7 +1010,7 @@ lshift(mrb_state *mrb, mrb_int val, int width) } static mrb_value -rshift(mrb_int val, int width) +rshift(mrb_int val, size_t width) { if (width >= NUMERIC_SHIFT_WIDTH_MAX) { if (val < 0) { |
