lib1513: fix callback proto to silence warning

This commit is contained in:
Daniel Stenberg 2014-03-28 15:47:18 +01:00
parent 2baf38f7c3
commit 713402982f
1 changed files with 9 additions and 1 deletions

View File

@ -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;
}