mirror of
https://github.com/curl/curl.git
synced 2026-07-26 13:57:57 +03:00
lib1513: fix callback proto to silence warning
This commit is contained in:
parent
2baf38f7c3
commit
713402982f
1 changed files with 9 additions and 1 deletions
|
|
@ -30,9 +30,17 @@
|
|||
|
||||
#include "memdebug.h"
|
||||
|
||||
static int progressKiller(void *arg)
|
||||
static int progressKiller(void *arg,
|
||||
double dltotal,
|
||||
double dlnow,
|
||||
double ultotal,
|
||||
double ulnow)
|
||||
{
|
||||
(void)arg;
|
||||
(void)dltotal;
|
||||
(void)dlnow;
|
||||
(void)ultotal;
|
||||
(void)ulnow;
|
||||
return 1;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue