Change arena index from `mrb_int` to `int`.

parent b0e49ef7
......@@ -6624,7 +6624,7 @@ dump_args(mrb_state *mrb, node *n, int offset)
static const char*
str_dump(mrb_state *mrb, const char *str, int len)
{
mrb_int ai = mrb_gc_arena_save(mrb);
int ai = mrb_gc_arena_save(mrb);
mrb_value s;
# if INT_MAX > MRB_INT_MAX / 4
/* check maximum length with "\xNN" charactor */
......
......@@ -12421,7 +12421,7 @@ dump_args(mrb_state *mrb, node *n, int offset)
static const char*
str_dump(mrb_state *mrb, const char *str, int len)
{
mrb_int ai = mrb_gc_arena_save(mrb);
int ai = mrb_gc_arena_save(mrb);
mrb_value s;
# if INT_MAX > MRB_INT_MAX / 4
/* check maximum length with "\xNN" charactor */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment