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

@ -92,7 +92,7 @@ int my_trace(CURL *handle, curl_infotype type,
void *userp)
{
const char *text;
(void)handle; /* prevent compiler warning */
(void)handle;
(void)userp;
switch(type) {
case CURLINFO_TEXT:
@ -171,7 +171,7 @@ static int server_push_callback(CURL *parent,
FILE *out;
static unsigned int count = 0;
(void)parent; /* we have no use for this */
(void)parent;
curl_msnprintf(filename, 128, "push%u", count++);