aboutsummaryrefslogtreecommitdiff
path: root/lib/security.c
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2016-11-23 08:49:04 +0100
committerDaniel Stenberg <daniel@haxx.se>2016-11-24 23:58:22 +0100
commit6832c1d4b2a9eb97a36bb6565c84a8eef451a39c (patch)
treedad19839fa62edb783545b6387ec3fba151dd813 /lib/security.c
parent80e7cfeb87c18a7552933ff43a96bd1b709eec22 (diff)
checksrc: move open braces to comply with function declaration style
Diffstat (limited to 'lib/security.c')
-rw-r--r--lib/security.c3
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';