summaryrefslogtreecommitdiffhomepage
path: root/src/load.c
diff options
context:
space:
mode:
authorYukihiro "Matz" Matsumoto <[email protected]>2020-06-15 23:37:32 +0900
committerYukihiro "Matz" Matsumoto <[email protected]>2020-10-12 16:21:14 +0900
commit925cd2ab8fa87c5acd13cb095d43c2bc2b4d77bf (patch)
tree4477cb01eda8031e7e0df12a06fbb57d69bc795b /src/load.c
parent9debf633408acbf6c58ff5660907b1b4b76142ab (diff)
downloadmruby-925cd2ab8fa87c5acd13cb095d43c2bc2b4d77bf.tar.gz
mruby-925cd2ab8fa87c5acd13cb095d43c2bc2b4d77bf.zip
Use `int` instead of `mrb_int` for arena index.
Diffstat (limited to 'src/load.c')
-rw-r--r--src/load.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/load.c b/src/load.c
index 45fe38736..0dc6e93fe 100644
--- a/src/load.c
+++ b/src/load.c
@@ -75,7 +75,7 @@ read_irep_record_1(mrb_state *mrb, const uint8_t *bin, size_t *len, uint8_t flag
struct RData *irep_obj = mrb_data_object_alloc(mrb, mrb->object_class, NULL, &tempirep_type);
mrb_pool_value *pool;
mrb_sym *syms;
- mrb_int ai = mrb_gc_arena_save(mrb);
+ int ai = mrb_gc_arena_save(mrb);
mrb_irep *irep = mrb_add_irep(mrb);
irep_obj->data = irep;