From abd5bc9216d1719ea845b358739f6525e0594807 Mon Sep 17 00:00:00 2001 From: Yuichi Nishiwaki Date: Wed, 30 Oct 2013 15:40:40 +0900 Subject: [PATCH] fix a bug introded in prev prev commit --- src/vm.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/vm.c b/src/vm.c index 7da07712..a42279c5 100644 --- a/src/vm.c +++ b/src/vm.c @@ -217,7 +217,7 @@ pic_apply(pic_state *pic, struct pic_proc *proc, pic_value argv) boot[0].insn = OP_CALL; boot[0].u.i = argc; boot[1].insn = OP_STOP; - pc = &boot; + pc = boot; goto L_CALL; VM_LOOP {