diff options
| author | Daniel Stenberg <daniel@haxx.se> | 2015-03-17 13:41:49 +0100 | 
|---|---|---|
| committer | Daniel Stenberg <daniel@haxx.se> | 2015-03-17 13:57:37 +0100 | 
| commit | 9395999543eaad251d61a83b50f461cc29884cd2 (patch) | |
| tree | 4213f0e89d018bb7ab517a03a8f1e337e4e032cf /lib/connect.c | |
| parent | a6b8fe2a5f6f18bd1a6fd0767a961fa1e87aba3e (diff) | |
checksrc: use space after comma
Diffstat (limited to 'lib/connect.c')
| -rw-r--r-- | lib/connect.c | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/lib/connect.c b/lib/connect.c index c1b7366dc..b67db902f 100644 --- a/lib/connect.c +++ b/lib/connect.c @@ -883,7 +883,7 @@ static void tcpnodelay(struct connectdata *conn,      infof(data, "Could not set TCP_NODELAY: %s\n",            Curl_strerror(conn, SOCKERRNO));    else -    infof(data,"TCP_NODELAY set\n"); +    infof(data, "TCP_NODELAY set\n");  #else    (void)conn;    (void)sockfd; @@ -1111,7 +1111,7 @@ static CURLcode singleipconnect(struct connectdata *conn,      default:        /* unknown error, fallthrough and try another address! */        infof(data, "Immediate connect fail for %s: %s\n", -            ipaddress, Curl_strerror(conn,error)); +            ipaddress, Curl_strerror(conn, error));        data->state.os_errno = error;        /* connect failed */ | 
