From cab43414f932e3fa1b35692be7d029c25130d393 Mon Sep 17 00:00:00 2001 From: Stefan Eissing Date: Mon, 4 Aug 2025 12:50:29 +0200 Subject: [PATCH] fix old var use --- lib/hostip.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/hostip.c b/lib/hostip.c index e98f84ce4d..15297a2482 100644 --- a/lib/hostip.c +++ b/lib/hostip.c @@ -1536,7 +1536,7 @@ CURLcode Curl_resolv_getsock(struct Curl_easy *data, return Curl_async_getsock(data, ps); #else (void)data; - (void)socks; + (void)ps; return CURLE_OK; #endif }