From 8984a42ae4adef5c75a3f99271f741b9a78bcab9 Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Wed, 16 Feb 2022 23:04:07 +0100 Subject: [PATCH] =?utf8?q?http:=20fix=20"unused=20parameter=20=E2=80=98con?= =?utf8?q?n=E2=80=99"=20warning?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Follow-up from 7d600ad1c395 Spotted on appveyor Closes #8465 --- lib/http.c | 1 + 1 file changed, 1 insertion(+) 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; -- 2.47.3