diff options
author | Daniel Stenberg <daniel@haxx.se> | 2016-11-23 08:49:04 +0100 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2016-11-24 23:58:22 +0100 |
commit | 6832c1d4b2a9eb97a36bb6565c84a8eef451a39c (patch) | |
tree | dad19839fa62edb783545b6387ec3fba151dd813 /lib/security.c | |
parent | 80e7cfeb87c18a7552933ff43a96bd1b709eec22 (diff) | |
download | curl-6832c1d4b2a9eb97a36bb6565c84a8eef451a39c.tar.gz |
checksrc: move open braces to comply with function declaration style
Diffstat (limited to 'lib/security.c')
-rw-r--r-- | lib/security.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/security.c b/lib/security.c index 350cfa745..4a8f44433 100644 --- a/lib/security.c +++ b/lib/security.c @@ -88,7 +88,8 @@ name_to_level(const char *name) /* Convert a protocol |level| to its char representation. We take an int to catch programming mistakes. */ -static char level_to_char(int level) { +static char level_to_char(int level) +{ switch(level) { case PROT_CLEAR: return 'C'; |