diff options
-rw-r--r-- | lib/ssh.c | 2 |
1 files changed, 1 insertions, 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 |