summaryrefslogtreecommitdiffhomepage
path: root/src/vm.c
diff options
context:
space:
mode:
authorYukihiro "Matz" Matsumoto <[email protected]>2017-11-29 12:15:24 +0900
committerYukihiro "Matz" Matsumoto <[email protected]>2017-11-29 12:15:24 +0900
commitafa53809e2633adccfd0681809b531e7e74b31e5 (patch)
tree390cec62942fb3878ab4f52fb1ec5dda9e538717 /src/vm.c
parentf35f975d26fea23c00a2908f8686fa1b0476096a (diff)
downloadmruby-afa53809e2633adccfd0681809b531e7e74b31e5.tar.gz
mruby-afa53809e2633adccfd0681809b531e7e74b31e5.zip
No need to use `ecall_adjust()`.
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 0798250fa..c5639130d 100644
--- a/src/vm.c
+++ b/src/vm.c
@@ -1977,7 +1977,7 @@ RETRY_TRY_BLOCK:
goto L_RAISE;
}
while (mrb->c->eidx > 0) {
- ecall_adjust();
+ ecall(mrb);
}
/* automatic yield at the end */
mrb->c->status = MRB_FIBER_TERMINATED;