diff options
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"; |