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

@ -94,7 +94,8 @@ typedef struct _SockInfo {
} SockInfo;
/* Die if we get a bad CURLMcode somewhere */
static void mcode_or_die(const char *where, CURLMcode code) {
static void mcode_or_die(const char *where, CURLMcode code)
{
if(CURLM_OK != code) {
const char *s;
switch (code) {