summaryrefslogtreecommitdiff
path: root/auto_tests/tox_strncasecmp_test.c
diff options
context:
space:
mode:
authoriphydf <iphydf@users.noreply.github.com>2018-02-05 21:38:58 +0000
committeriphydf <iphydf@users.noreply.github.com>2018-02-09 20:51:39 +0000
commit6cd4fcdec4e6671e63e8c7cba2ab4c6d594b13fd (patch)
tree09485be8361d503f1acdee57055535a6b3331d17 /auto_tests/tox_strncasecmp_test.c
parent05912fd65c52f97a600383be11cd741ae32d61bf (diff)
Remove libcheck from the dependencies.
We're not gaining much from this library, and it's a burden, especially for windows development.
Diffstat (limited to 'auto_tests/tox_strncasecmp_test.c')
-rw-r--r--auto_tests/tox_strncasecmp_test.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/auto_tests/tox_strncasecmp_test.c b/auto_tests/tox_strncasecmp_test.c
index 3a544c00..fc0d2fc8 100644
--- a/auto_tests/tox_strncasecmp_test.c
+++ b/auto_tests/tox_strncasecmp_test.c
@@ -29,7 +29,7 @@ void verify(const char *s1, const char *s2, size_t n, Comparison expected)
29 29
30 ck_assert_msg(actual == expected, 30 ck_assert_msg(actual == expected,
31 "tox_strncasecmp(\"%s\", \"%s\", %u) == %s, but expected %s.", 31 "tox_strncasecmp(\"%s\", \"%s\", %u) == %s, but expected %s.",
32 s1, s2, n, Comparison_Str[actual], Comparison_Str[expected]); 32 s1, s2, (unsigned)n, Comparison_Str[actual], Comparison_Str[expected]);
33} 33}
34 34
35START_TEST(test_general) 35START_TEST(test_general)