mirror of
https://github.com/curl/curl.git
synced 2026-06-01 22:14:17 +03:00
Fix compiler warning.
This commit is contained in:
parent
4be7dcba48
commit
73f407b7ae
1 changed files with 2 additions and 1 deletions
|
|
@ -1311,7 +1311,8 @@ void Curl_expire(struct SessionHandle *data, long milli)
|
|||
if(rc)
|
||||
infof(data, "Internal error clearing splay node = %d\n", rc);
|
||||
infof(data, "Expire cleared\n");
|
||||
nowp->tv_sec = nowp->tv_usec = 0;
|
||||
nowp->tv_sec = 0;
|
||||
nowp->tv_sec = 0;
|
||||
}
|
||||
}
|
||||
else {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue