diff options
author | Joseph Hunkeler <jhunkeler@users.noreply.github.com> | 2024-10-09 13:33:45 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-10-09 13:33:45 -0400 |
commit | 781f9873f20c45155e0dc3548bf47c74ab4a08fb (patch) | |
tree | 73d64f2b28a8742b2471b8549a81b1847f261edf /tests | |
parent | 67dc983f124dd16c2e127fc5c9e4854e7bca9078 (diff) | |
parent | 8362f2c6150ec6e41a985764639d3d910e0da08c (diff) | |
download | stasis-781f9873f20c45155e0dc3548bf47c74ab4a08fb.tar.gz |
Merge pull request #59 from jhunkeler/leaks-and-squeaks
Leaks and squeaks
Diffstat (limited to 'tests')
-rw-r--r-- | tests/test_str.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_str.c b/tests/test_str.c index f8aa1e9..4991c1c 100644 --- a/tests/test_str.c +++ b/tests/test_str.c @@ -244,7 +244,7 @@ void test_join_ex() { }; for (size_t i = 0; i < sizeof(tc) / sizeof(*tc); i++) { char *result; - result = join_ex(tc[i].delim, "a", "b", "c", "d", "e", NULL); + result = join_ex((char *) tc[i].delim, "a", "b", "c", "d", "e", NULL); STASIS_ASSERT(strcmp(result ? result : "", tc[i].expected) == 0, "failed to join array"); guard_free(result); } |