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/select.c | |
parent | a6b8fe2a5f6f18bd1a6fd0767a961fa1e87aba3e (diff) | |
download | curl-9395999543eaad251d61a83b50f461cc29884cd2.tar.gz |
checksrc: use space after comma
Diffstat (limited to 'lib/select.c')
-rw-r--r-- | lib/select.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/select.c b/lib/select.c index ca9f7015c..24dc5fd79 100644 --- a/lib/select.c +++ b/lib/select.c @@ -159,7 +159,7 @@ int Curl_socket_check(curl_socket_t readfd0, /* two sockets to read from */ fd_set fds_err; curl_socket_t maxfd; #endif - struct timeval initial_tv = {0,0}; + struct timeval initial_tv = {0, 0}; int pending_ms = 0; int error; int r; @@ -393,7 +393,7 @@ int Curl_poll(struct pollfd ufds[], unsigned int nfds, int timeout_ms) fd_set fds_err; curl_socket_t maxfd; #endif - struct timeval initial_tv = {0,0}; + struct timeval initial_tv = {0, 0}; bool fds_none = TRUE; unsigned int i; int pending_ms = 0; |