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 /test/test_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 'test/test_status.c')
-rw-r--r-- | test/test_status.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test_status.c b/test/test_status.c index 486c210..6405ec8 100644 --- a/test/test_status.c +++ b/test/test_status.c @@ -37,7 +37,7 @@ test_strerror(void) const char* msg = zix_strerror(ZIX_STATUS_SUCCESS); assert(!strcmp(msg, "Success")); - for (int i = ZIX_STATUS_ERROR; i <= ZIX_STATUS_OVERFLOW; ++i) { + for (int i = ZIX_STATUS_ERROR; i <= ZIX_STATUS_NOT_SUPPORTED; ++i) { msg = zix_strerror((ZixStatus)i); assert(strcmp(msg, "Success")); } |