From: Dan Fandrich Date: Thu, 27 Apr 2017 09:42:04 +0000 (+0200) Subject: http-proxy: removed unused argument in CURL_DISABLE_PROXY case X-Git-Tag: curl-7_54_1~219 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=63503a969fe9e11907f7e3f262a3f6c27d885f60;p=curl http-proxy: removed unused argument in CURL_DISABLE_PROXY case Missed in commit 55c3c02e --- diff --git a/lib/http_proxy.h b/lib/http_proxy.h index 81b7b8b8b..cbb1ab421 100644 --- a/lib/http_proxy.h +++ b/lib/http_proxy.h @@ -34,7 +34,7 @@ CURLcode Curl_proxyCONNECT(struct connectdata *conn, CURLcode Curl_proxy_connect(struct connectdata *conn, int sockindex); #else -#define Curl_proxyCONNECT(x,y,z,w,v) CURLE_NOT_BUILT_IN +#define Curl_proxyCONNECT(x,y,z,w) CURLE_NOT_BUILT_IN #define Curl_proxy_connect(x,y) CURLE_OK #endif