tidy-up: drop stray "unused" comments

Closes #18453
This commit is contained in:
Viktor Szakats 2025-09-02 13:20:20 +02:00
parent 24badd29f5
commit 49145249be
No known key found for this signature in database
GPG key ID: B5ABD165E2AEF201
55 changed files with 128 additions and 129 deletions

View file

@ -1287,8 +1287,8 @@ static CURLcode send_telnet_data(struct Curl_easy *data,
static CURLcode telnet_done(struct Curl_easy *data,
CURLcode status, bool premature)
{
(void)status; /* unused */
(void)premature; /* not used */
(void)status;
(void)premature;
Curl_meta_remove(data, CURL_META_TELNET_EASY);
return CURLE_OK;
}