diff options
Diffstat (limited to 'src/status.c')
-rw-r--r-- | src/status.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/status.c b/src/status.c index 2ca3fe8..cbb3d36 100644 --- a/src/status.c +++ b/src/status.c @@ -25,6 +25,10 @@ zix_strerror(const ZixStatus status) return "Bad permissions"; case ZIX_STATUS_REACHED_END: return "Reached end"; + case ZIX_STATUS_TIMEOUT: + return "Timeout"; + case ZIX_STATUS_OVERFLOW: + return "Overflow"; } return "Unknown error"; } |