From ec7a100bd2b528ebc467993fc289bdbbe97dc57e Mon Sep 17 00:00:00 2001 From: Nakidai Date: Wed, 26 Mar 2025 19:13:52 +0300 Subject: Fix REPEAT loop Well, maybe passthrough by default is not that good... --- executor.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'executor.c') diff --git a/executor.c b/executor.c index c281b82..37cffc6 100644 --- a/executor.c +++ b/executor.c @@ -291,7 +291,7 @@ enum cccl_ExecutorStatus cccl_execute(struct cccl_Node *code, struct cccl_Variab case cccl_Executor_CONTINUE: break; case cccl_Executor_END: goto end; } - }; + } break; case cccl_Node_CONDITIONAL: { assert(stack.length >= 1); -- cgit 1.4.1