From: Daniel Stenberg Date: Thu, 15 Jun 2006 21:30:32 +0000 (+0000) Subject: select_res is not a socket, it should be a plain int X-Git-Tag: curl-7_15_5~191 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=76cf02075035191ffec1f789f8912cb7a692786f;p=thirdparty%2Fcurl.git select_res is not a socket, it should be a plain int --- diff --git a/lib/transfer.c b/lib/transfer.c index 4aa94364b5..370734a134 100644 --- a/lib/transfer.c +++ b/lib/transfer.c @@ -285,7 +285,7 @@ CURLcode Curl_readwrite(struct connectdata *conn, curl_socket_t fd_read; curl_socket_t fd_write; - curl_socket_t select_res; + int select_res; curl_off_t contentlength;