Fix compiler warning

This commit is contained in:
Yang Tse
2006-09-07 01:18:46 +00:00
parent a932803eac
commit 7e4193b538

View File

@@ -2135,7 +2135,7 @@ static int handleSock5Proxy(const char *proxy_name,
Curl_nonblock(sock, TRUE); Curl_nonblock(sock, TRUE);
/* wait until socket gets connected */ /* wait until socket gets connected */
result = Curl_select(CURL_SOCKET_BAD, sock, timeout); result = Curl_select(CURL_SOCKET_BAD, sock, (int)timeout);
if(-1 == result) { if(-1 == result) {
failf(conn->data, "SOCKS5: no connection here"); failf(conn->data, "SOCKS5: no connection here");
@@ -2167,7 +2167,7 @@ static int handleSock5Proxy(const char *proxy_name,
Curl_nonblock(sock, TRUE); Curl_nonblock(sock, TRUE);
result = Curl_select(sock, CURL_SOCKET_BAD, timeout); result = Curl_select(sock, CURL_SOCKET_BAD, (int)timeout);
if(-1 == result) { if(-1 == result) {
failf(conn->data, "SOCKS5 nothing to read"); failf(conn->data, "SOCKS5 nothing to read");