From 692af8e8f8b5f9965450d8f2577f435feaa6f80d Mon Sep 17 00:00:00 2001 From: Takashi Kokubun Date: Mon, 21 Dec 2020 21:16:19 -0800 Subject: Prefer stdbool in vm_exec Make the code a bit modern and consistent with some other places. --- mjit_compile.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'mjit_compile.c') diff --git a/mjit_compile.c b/mjit_compile.c index 7e715b7e10..dc188864ca 100644 --- a/mjit_compile.c +++ b/mjit_compile.c @@ -280,7 +280,7 @@ compile_inlined_cancel_handler(FILE *f, const struct rb_iseq_constant_body *body } // We're not just returning Qundef here so that caller's normal cancel handler can // push back `stack` to `cfp->sp`. - fprintf(f, " return vm_exec(ec, FALSE);\n"); + fprintf(f, " return vm_exec(ec, false);\n"); } // Print the block to cancel JIT execution. -- cgit v1.2.3