* core/compile.c: fixing `make JIT=0`.
author_why <why@whytheluckystiff.net>
Thu, 30 Jul 2009 23:45:04 +0000 (16:45 -0700)
committer_why <why@whytheluckystiff.net>
Thu, 30 Jul 2009 23:45:04 +0000 (16:45 -0700)
core/compile.c

index 59d150be8c7e12f3ad3c9ada003c99c9eb076d48..cb3cc836d329204e351959c0674ec736c630d59e 100644 (file)
@@ -827,7 +827,7 @@ PN potion_run(Potion *P, PN code) {
   PN_CLOSURE(cl)->data[0] = code;
   return PN_PROTO(code)->jit(P, cl, P->lobby);
 #else
-  return potion_vm(P, code, PN_NIL, 0, NULL);
+  return potion_vm(P, code, P->lobby, PN_NIL, 0, NULL);
 #endif
 }