mirror of
https://github.com/curl/curl.git
synced 2024-11-21 01:16:58 +08:00
lib1513: fix callback proto to silence warning
This commit is contained in:
parent
2baf38f7c3
commit
713402982f
@ -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…
Reference in New Issue
Block a user