mirror of
https://github.com/curl/curl.git
synced 2026-08-26 05:53:32 +03:00
drop "unused" comments
This commit is contained in:
parent
c72bb7aec4
commit
448874f680
35 changed files with 76 additions and 77 deletions
|
|
@ -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);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue