From 6a40e6f8bec5c5945d8eb5324934b4447802f246 Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Thu, 1 Jul 2021 00:06:27 +0200 Subject: doh: (void)-prefix call to curl_easy_setopt --- lib/doh.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/doh.c') diff --git a/lib/doh.c b/lib/doh.c index cf3848d96..04a5b3d92 100644 --- a/lib/doh.c +++ b/lib/doh.c @@ -359,7 +359,7 @@ static CURLcode dohprobe(struct Curl_easy *data, (data->set.ssl.auto_client_cert ? CURLSSLOPT_AUTO_CLIENT_CERT : 0); - curl_easy_setopt(doh, CURLOPT_SSL_OPTIONS, mask); + (void)curl_easy_setopt(doh, CURLOPT_SSL_OPTIONS, mask); } doh->set.fmultidone = doh_done; -- cgit v1.2.1