mirror of
https://github.com/curl/curl.git
synced 2026-07-24 19:17:20 +03:00
checksrc: move open braces to comply with function declaration style
This commit is contained in:
parent
80e7cfeb87
commit
6832c1d4b2
13 changed files with 78 additions and 65 deletions
|
|
@ -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) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue