summaryrefslogtreecommitdiffhomepage
path: root/src/vm.c
diff options
context:
space:
mode:
authorfurunkel <[email protected]>2015-10-19 22:29:43 +0200
committerfurunkel <[email protected]>2015-10-19 22:29:43 +0200
commit3ab2f9371e60039936356afaee9f509d782259fd (patch)
tree2e4107a2e992f56c5051b5f39e04e7c375d2a139 /src/vm.c
parentf07ee20260156e07c2ca5efe63bf0ea9f3ac8132 (diff)
downloadmruby-3ab2f9371e60039936356afaee9f509d782259fd.tar.gz
mruby-3ab2f9371e60039936356afaee9f509d782259fd.zip
Clean up GC code
Diffstat (limited to 'src/vm.c')
-rw-r--r--src/vm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/vm.c b/src/vm.c
index 8419931d0..50d784fcd 100644
--- a/src/vm.c
+++ b/src/vm.c
@@ -52,7 +52,7 @@ The value below allows about 60000 recursive calls in the simplest case. */
# define DEBUG(x)
#endif
-#define ARENA_RESTORE(mrb,ai) (mrb)->arena_idx = (ai)
+#define ARENA_RESTORE(mrb,ai) (mrb)->gc.arena_idx = (ai)
static inline void
stack_clear(mrb_value *from, size_t count)