diff options
author | David Robillard <d@drobilla.net> | 2022-08-19 14:04:49 -0400 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2022-08-19 14:21:28 -0400 |
commit | 1069c63c6ca2713cce2d6153acc1a1ef9f2b7f8f (patch) | |
tree | f6a4710fe2a8e4fe215a53f06c4eef6dc00c588b /src/status.c | |
parent | 12cac42e31653323ec607ba3b6512fe9a734d083 (diff) | |
download | zix-1069c63c6ca2713cce2d6153acc1a1ef9f2b7f8f.tar.gz zix-1069c63c6ca2713cce2d6153acc1a1ef9f2b7f8f.tar.bz2 zix-1069c63c6ca2713cce2d6153acc1a1ef9f2b7f8f.zip |
Move sem implementation out of header
This avoids having platform conditionals in public headers, which causes build
problems for dependants.
Diffstat (limited to 'src/status.c')
-rw-r--r-- | src/status.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/status.c b/src/status.c index cbb3d36..a0bb17e 100644 --- a/src/status.c +++ b/src/status.c @@ -29,6 +29,8 @@ zix_strerror(const ZixStatus status) return "Timeout"; case ZIX_STATUS_OVERFLOW: return "Overflow"; + case ZIX_STATUS_NOT_SUPPORTED: + return "Not supported"; } return "Unknown error"; } |