diff options
author | David Robillard <d@drobilla.net> | 2023-01-11 12:33:18 -0500 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2023-01-11 12:33:18 -0500 |
commit | 5533749ee6a66a7b4a6efd205734b8b3f82b72e7 (patch) | |
tree | 684aca37bb5c655d58bb1744251fe946a5100dc7 /test/test_strerror.c | |
parent | 704d25d38bf64b2481d8fc40a79cc47d601cc40f (diff) | |
download | pugl-5533749ee6a66a7b4a6efd205734b8b3f82b72e7.tar.gz pugl-5533749ee6a66a7b4a6efd205734b8b3f82b72e7.tar.bz2 pugl-5533749ee6a66a7b4a6efd205734b8b3f82b72e7.zip |
Fix coverage of puglStrerror test
Diffstat (limited to 'test/test_strerror.c')
-rw-r--r-- | test/test_strerror.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test_strerror.c b/test/test_strerror.c index ec96ecb..c120a93 100644 --- a/test/test_strerror.c +++ b/test/test_strerror.c @@ -14,7 +14,7 @@ int main(void) { - for (unsigned i = 0; i <= PUGL_UNSUPPORTED; ++i) { + for (unsigned i = 0; i <= PUGL_NO_MEMORY; ++i) { const char* const string = puglStrerror((PuglStatus)i); assert(isupper(string[0])); |