Curl_select's timeout arg is an int

This commit is contained in:
Daniel Stenberg
2004-11-22 13:28:44 +00:00
parent 4be60ac155
commit 8e34e75100
2 changed files with 2 additions and 2 deletions

View File

@@ -1374,7 +1374,7 @@ Curl_SSLConnect(struct connectdata *conn,
break;
while(1) {
what = Curl_select(readfd, writefd, timeout_ms);
what = Curl_select(readfd, writefd, (int)timeout_ms);
if(what > 0)
/* reabable or writable, go loop in the outer loop */
break;