mirror of
https://github.com/curl/curl.git
synced 2026-06-03 17:24:21 +03:00
ssh: Fix compile error on 64-bit systems.
Signed-off-by: Ben Greear <greearb@candelatech.com>
This commit is contained in:
parent
d6981cb508
commit
affff47b3d
1 changed files with 1 additions and 1 deletions
|
|
@ -2444,7 +2444,7 @@ static CURLcode ssh_easy_statemach(struct connectdata *conn,
|
|||
}
|
||||
/* wait for the socket to become ready */
|
||||
Curl_socket_ready(fd_read, fd_write,
|
||||
left>1000?1000:left); /* ignore result */
|
||||
(int)(left>1000?1000:left)); /* ignore result */
|
||||
}
|
||||
#endif
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue