diff options
author | Joseph Hunkeler <jhunkeler@gmail.com> | 2021-05-12 23:46:22 -0400 |
---|---|---|
committer | Joseph Hunkeler <jhunkeler@gmail.com> | 2021-05-12 23:46:22 -0400 |
commit | 89511934b805999e0c12071750c52c1c45d35536 (patch) | |
tree | cddfae1f628181b67a6d1a965e6c7c1239f81aeb /tests/test_errors.c | |
parent | 054508b5edeaef602ee4251bb3828387cb26f582 (diff) | |
download | cleanpath-89511934b805999e0c12071750c52c1c45d35536.tar.gz |
Proper namespace for the header file. Bump version.
Diffstat (limited to 'tests/test_errors.c')
-rw-r--r-- | tests/test_errors.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/test_errors.c b/tests/test_errors.c index f9d641f..82241ed 100644 --- a/tests/test_errors.c +++ b/tests/test_errors.c @@ -1,4 +1,4 @@ -#include "cleanpath.h" +#include "cleanpath/cleanpath.h" #include "framework.h" int main() { @@ -8,4 +8,4 @@ int main() { //intentionally bad myassert(cleanpath_init("good", NULL) == NULL, "cleanpath_init() returned non-NULL on NULL sep\n"); myassert(cleanpath_init(NULL, "good") == NULL, "cleanpath_init() returned non-NULL on NULL path\n"); -}
\ No newline at end of file +} |