Skip to content
Snippets Groups Projects
Commit c174b13f authored by Yang Tse's avatar Yang Tse
Browse files

fix compiler warning: unused parameter

parent 6b95c4e3
No related branches found
No related tags found
No related merge requests found
......@@ -718,6 +718,7 @@ static void sndbufset(struct connectdata *conn,
curl_socket_t sockfd)
{
int val = CURL_MAX_WRITE_SIZE + 32;
(void)conn;
setsockopt(sockfd, SOL_SOCKET, SO_SNDBUF, (const char *)&val, sizeof(val));
}
#else
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment