From: Daniel Stenberg Date: Wed, 16 Feb 2022 22:04:07 +0000 (+0100) Subject: http: fix "unused parameter ‘conn’" warning X-Git-Tag: curl-7_82_0~56 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8984a42ae4adef5c75a3f99271f741b9a78bcab9;p=thirdparty%2Fcurl.git http: fix "unused parameter ‘conn’" warning Follow-up from 7d600ad1c395 Spotted on appveyor Closes #8465 --- diff --git a/lib/http.c b/lib/http.c index e9e5bded5f..799d4fb457 100644 --- a/lib/http.c +++ b/lib/http.c @@ -666,6 +666,7 @@ output_auth_headers(struct Curl_easy *data, { const char *auth = NULL; CURLcode result = CURLE_OK; + (void)conn; #ifdef CURL_DISABLE_CRYPTO_AUTH (void)request;