mirror of
https://github.com/curl/curl.git
synced 2026-08-26 21:24:08 +03:00
checksrc: use space after comma
This commit is contained in:
parent
a6b8fe2a5f
commit
9395999543
37 changed files with 171 additions and 140 deletions
|
|
@ -2426,7 +2426,7 @@ CURLMcode curl_multi_socket_all(CURLM *multi_handle, int *running_handles)
|
|||
static CURLMcode multi_timeout(struct Curl_multi *multi,
|
||||
long *timeout_ms)
|
||||
{
|
||||
static struct timeval tv_zero = {0,0};
|
||||
static struct timeval tv_zero = {0, 0};
|
||||
|
||||
if(multi->timetree) {
|
||||
/* we have a tree of expire times */
|
||||
|
|
@ -2484,7 +2484,7 @@ static int update_timer(struct Curl_multi *multi)
|
|||
return -1;
|
||||
}
|
||||
if(timeout_ms < 0) {
|
||||
static const struct timeval none={0,0};
|
||||
static const struct timeval none={0, 0};
|
||||
if(Curl_splaycomparekeys(none, multi->timer_lastcall)) {
|
||||
multi->timer_lastcall = none;
|
||||
/* there's no timeout now but there was one previously, tell the app to
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue