From: Daniel Stenberg Date: Tue, 30 Mar 2004 13:05:45 +0000 (+0000) Subject: typecast setsockopt()'s 4th argument to void * to make compilers complain X-Git-Tag: curl-7_11_2~149 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d5b8971ff360e596cfbefbc5964f2a3c2e6415ec;p=thirdparty%2Fcurl.git typecast setsockopt()'s 4th argument to void * to make compilers complain less --- diff --git a/lib/connect.c b/lib/connect.c index 78338de65e..0d42ca14dc 100644 --- a/lib/connect.c +++ b/lib/connect.c @@ -490,7 +490,8 @@ static void Curl_setNoDelay(struct connectdata *conn, #ifdef TCP_NODELAY struct SessionHandle *data= conn->data; socklen_t onoff = (socklen_t) data->tcp_nodelay; - if(setsockopt(sockfd, IPPROTO_TCP, TCP_NODELAY, &onoff, sizeof(onoff)) < 0) + if(setsockopt(sockfd, IPPROTO_TCP, TCP_NODELAY, (void *)&onoff, + sizeof(onoff)) < 0) infof(data, "Could not set TCP_NODELAY: %s\n", Curl_strerror(conn, Curl_ourerrno())); else