diff options
author | Daniel Stenberg <daniel@haxx.se> | 2016-12-13 23:34:59 +0100 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2016-12-13 23:39:11 +0100 |
commit | b228d2952b6762b5c9b851fba0cf391e80c6761a (patch) | |
tree | d8d52d61b047a31b1c51851f1b48c4dc9cfcd1f4 /tests/libtest/lib586.c | |
parent | 5fad800efdf1cb84f863f3634b85c898fb3d0d66 (diff) |
checksrc: stricter no-space-before-paren enforcement
In order to make the code style more uniform everywhere
Diffstat (limited to 'tests/libtest/lib586.c')
-rw-r--r-- | tests/libtest/lib586.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/libtest/lib586.c b/tests/libtest/lib586.c index eb7cfa0a9..9b789eec7 100644 --- a/tests/libtest/lib586.c +++ b/tests/libtest/lib586.c @@ -45,7 +45,7 @@ static void my_lock(CURL *handle, curl_lock_data data, (void)handle; (void)laccess; - switch (data) { + switch(data) { case CURL_LOCK_DATA_SHARE: what = "share"; break; @@ -72,7 +72,7 @@ static void my_unlock(CURL *handle, curl_lock_data data, void *useptr) const char *what; struct userdata *user = (struct userdata *)useptr; (void)handle; - switch ( data) { + switch(data) { case CURL_LOCK_DATA_SHARE: what = "share"; break; |