summaryrefslogtreecommitdiff
path: root/auto_tests/tox_strncasecmp_test.c
diff options
context:
space:
mode:
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)