checksrc: move open braces to comply with function declaration style

This commit is contained in:
Daniel Stenberg 2016-11-23 08:49:04 +01:00
parent 80e7cfeb87
commit 6832c1d4b2
13 changed files with 78 additions and 65 deletions

View file

@ -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';