mirror of
https://github.com/curl/curl.git
synced 2026-07-27 17:28:56 +03:00
lib: silence conversion warnings
Closes https://github.com/curl/curl/pull/4444
This commit is contained in:
parent
68b0aac2f8
commit
69d95b6d4c
2 changed files with 2 additions and 2 deletions
|
|
@ -2822,7 +2822,7 @@ static CURLcode ssh_block_statemach(struct connectdata *conn,
|
|||
fd_write = sock;
|
||||
/* wait for the socket to become ready */
|
||||
(void)Curl_socket_check(fd_read, CURL_SOCKET_BAD, fd_write,
|
||||
left>1000?1000:left); /* ignore result */
|
||||
left>1000?1000:(time_t)left);
|
||||
}
|
||||
#endif
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue