about summary refs log tree commit diff
diff options
context:
space:
mode:
authorNakidai <nakidai@disroot.org>2025-03-26 19:13:52 +0300
committerNakidai <nakidai@disroot.org>2025-03-26 19:13:52 +0300
commitec7a100bd2b528ebc467993fc289bdbbe97dc57e (patch)
tree00df51028bd9dfcb5a0162f5e6cf8d52992133e4
parent32495bacca2603046acdacdd16875652098fb2f4 (diff)
download3cl-ec7a100bd2b528ebc467993fc289bdbbe97dc57e.tar.gz
3cl-ec7a100bd2b528ebc467993fc289bdbbe97dc57e.zip
Fix REPEAT loop v1.2
Well, maybe passthrough by default is not that good...
-rw-r--r--executor.c2
1 files changed, 1 insertions, 1 deletions
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);