drop "unused" comments

This commit is contained in:
Viktor Szakats 2025-09-02 13:20:20 +02:00
parent c72bb7aec4
commit 448874f680
No known key found for this signature in database
GPG key ID: B5ABD165E2AEF201
35 changed files with 76 additions and 77 deletions

View file

@ -56,8 +56,8 @@ static size_t WriteCallback(void *ptr, size_t size, size_t nmemb, void *data)
{
/* we are not interested in the downloaded bytes itself,
so we only return the size we would have saved ... */
(void)ptr; /* unused */
(void)data; /* unused */
(void)ptr;
(void)data;
return (size_t)(size * nmemb);
}