diff options
author | Daniel Stenberg <daniel@haxx.se> | 2016-04-03 11:57:34 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2016-04-03 11:57:34 +0200 |
commit | 365322b8bcf9efb6a361473d227b70f2032212ce (patch) | |
tree | 1c6aa49fce74e802ac29e33098abf4c81ed4836b /tests/libtest/lib1512.c | |
parent | c7e4266a2e52d0dd0ad446044174c60ebfe10f73 (diff) |
tests/libtest: follow our code style guidelines better
... checksrc of all test code is pending.
Diffstat (limited to 'tests/libtest/lib1512.c')
-rw-r--r-- | tests/libtest/lib1512.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/libtest/lib1512.c b/tests/libtest/lib1512.c index bf03e1a4f..f4091b45a 100644 --- a/tests/libtest/lib1512.c +++ b/tests/libtest/lib1512.c @@ -49,7 +49,8 @@ int test(char *URL) return TEST_ERR_MAJOR_BAD; } - snprintf(dnsentry, sizeof(dnsentry), "server.example.curl:%s:%s", port, address); + snprintf(dnsentry, sizeof(dnsentry), "server.example.curl:%s:%s", + port, address); printf("%s\n", dnsentry); slist = curl_slist_append(slist, dnsentry); |