lib1513: fix callback proto to silence warning
authorDaniel Stenberg <daniel@haxx.se>
Fri, 28 Mar 2014 14:47:18 +0000 (15:47 +0100)
committerDaniel Stenberg <daniel@haxx.se>
Sat, 29 Mar 2014 22:14:42 +0000 (23:14 +0100)
tests/libtest/lib1513.c

index 9f3deae..f97ca52 100644 (file)
 
 #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;
 }