summaryrefslogtreecommitdiff
path: root/auto_tests/tox_strncasecmp_test.c
diff options
context:
space:
mode:
authoriphydf <iphydf@users.noreply.github.com>2018-01-10 13:39:07 +0000
committeriphydf <iphydf@users.noreply.github.com>2018-01-10 18:57:37 +0000
commit54ec162558f203242639b382eea6e0085300249c (patch)
tree5321d67bbc143ea3caa4e9e9048ffc71e40b0c14 /auto_tests/tox_strncasecmp_test.c
parenta3079e82ddda90055d7247f000a8e9afa7f8a5c5 (diff)
Fix formatting in some C files.
Also replace &(x) with &x for consistency.
Diffstat (limited to 'auto_tests/tox_strncasecmp_test.c')
-rw-r--r--auto_tests/tox_strncasecmp_test.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/auto_tests/tox_strncasecmp_test.c b/auto_tests/tox_strncasecmp_test.c
index 5e0edcbd..c9ad696a 100644
--- a/auto_tests/tox_strncasecmp_test.c
+++ b/auto_tests/tox_strncasecmp_test.c
@@ -47,7 +47,7 @@ START_TEST(test_general)
47 // unequal strings with n=0 are equal 47 // unequal strings with n=0 are equal
48 verify("A", "B", 0, ZERO); 48 verify("A", "B", 0, ZERO);
49 verify("AAA", "BBB", 0, ZERO); 49 verify("AAA", "BBB", 0, ZERO);
50 verify("AAA", "BBBBBB", 0 , ZERO); 50 verify("AAA", "BBBBBB", 0, ZERO);
51 verify("AAAAAA", "BBB", 0, ZERO); 51 verify("AAAAAA", "BBB", 0, ZERO);
52 52
53 // equal strings are equal 53 // equal strings are equal
@@ -111,7 +111,7 @@ START_TEST(test_general)
111 // unequal strings with n=0 are equal 111 // unequal strings with n=0 are equal
112 verify("a", "B", 0, ZERO); 112 verify("a", "B", 0, ZERO);
113 verify("aaa", "BBB", 0, ZERO); 113 verify("aaa", "BBB", 0, ZERO);
114 verify("aaa", "BBBBBB", 0 , ZERO); 114 verify("aaa", "BBBBBB", 0, ZERO);
115 verify("aaaaaa", "BBB", 0, ZERO); 115 verify("aaaaaa", "BBB", 0, ZERO);
116 116
117 // equal strings are equal 117 // equal strings are equal