doh: (void)-prefix call to curl_easy_setopt

This commit is contained in:
Daniel Stenberg 2021-07-01 00:06:27 +02:00
parent 78fc6522c2
commit 6a40e6f8be
No known key found for this signature in database
GPG Key ID: 5CC908FDB71E12C2
1 changed files with 1 additions and 1 deletions

View File

@ -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;