diff options
| -rw-r--r-- | cccl.h | 2 | ||||
| -rw-r--r-- | str.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/cccl.h b/cccl.h index a49ac8a..eb08298 100644 --- a/cccl.h +++ b/cccl.h @@ -64,7 +64,7 @@ struct cccl_Node enum cccl_ExecutorStatus { - cccl_Executr_OK = 0, + cccl_Executor_OK = 0, cccl_Executor_ERROR, cccl_Executor_CONTINUE, cccl_Executor_END, 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"; |