diff options
| author | Nakidai <nakidai@disroot.org> | 2025-03-26 19:13:52 +0300 |
|---|---|---|
| committer | Nakidai <nakidai@disroot.org> | 2025-03-26 19:13:52 +0300 |
| commit | ec7a100bd2b528ebc467993fc289bdbbe97dc57e (patch) | |
| tree | 00df51028bd9dfcb5a0162f5e6cf8d52992133e4 /executor.c | |
| parent | 32495bacca2603046acdacdd16875652098fb2f4 (diff) | |
| download | 3cl-ec7a100bd2b528ebc467993fc289bdbbe97dc57e.tar.gz 3cl-ec7a100bd2b528ebc467993fc289bdbbe97dc57e.zip | |
Fix REPEAT loop v1.2
Well, maybe passthrough by default is not that good...
Diffstat (limited to 'executor.c')
| -rw-r--r-- | executor.c | 2 |
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); |