diff options
| author | Yukihiro "Matz" Matsumoto <[email protected]> | 2020-11-17 12:38:10 +0900 |
|---|---|---|
| committer | Yukihiro "Matz" Matsumoto <[email protected]> | 2020-11-17 12:41:10 +0900 |
| commit | 9fbf0ef886b5601c0c6cc8a24145a805283c9982 (patch) | |
| tree | 71f83410e123b9339d14696087d00835ecca35af /src/symbol.c | |
| parent | aae8237335accdede59a2ca7a2775ea11156884b (diff) | |
| download | mruby-9fbf0ef886b5601c0c6cc8a24145a805283c9982.tar.gz mruby-9fbf0ef886b5601c0c6cc8a24145a805283c9982.zip | |
Refactoring integer ranges.
- Remove `mrb_ssize`
- Fix `MRB_FIXNUM_{MIN,MAX}` to 32 bits on `MRB_NAN_BOXING`
Diffstat (limited to 'src/symbol.c')
| -rw-r--r-- | src/symbol.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/symbol.c b/src/symbol.c index 7a352a477..b4927c9d4 100644 --- a/src/symbol.c +++ b/src/symbol.c @@ -94,7 +94,7 @@ static const char pack_table[] = "_abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRS static mrb_sym sym_inline_pack(const char *name, size_t len) { - const size_t pack_length_max = (MRB_SYMBOL_BIT - 2) / 6; + const size_t pack_length_max = (MRB_SYMBOL_BIT - 2) / 6; char c; const char *p; |
