diff options
| author | Nakidai <nakidai@disroot.org> | 2025-03-31 05:10:38 +0300 |
|---|---|---|
| committer | Nakidai <nakidai@disroot.org> | 2025-03-31 05:11:14 +0300 |
| commit | a8b921e3773d6559bb3374b24ec246a290ca6643 (patch) | |
| tree | e784a588669c57d4116fbf46dda5c9eb79c16f4d /str.c | |
| parent | 00dbb67ff654c4d76ef1c3177927bc8eebff6f85 (diff) | |
| download | 3cl-a8b921e3773d6559bb3374b24ec246a290ca6643.tar.gz 3cl-a8b921e3773d6559bb3374b24ec246a290ca6643.zip | |
Fix cccl_Executor_OK name
Diffstat (limited to 'str.c')
| -rw-r--r-- | str.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/str.c b/str.c index 4277938..a8d85bd 100644 --- a/str.c +++ b/str.c @@ -48,7 +48,7 @@ const char *strstatus(enum cccl_ExecutorStatus status) { switch (status) { - break; case cccl_Executr_OK: return "OK"; + break; case cccl_Executor_OK: return "OK"; break; case cccl_Executor_ERROR: return "ERROR"; break; case cccl_Executor_CONTINUE: return "CONTINUE"; break; case cccl_Executor_END: return "END"; |