From: Daniel Stenberg Date: Fri, 28 Mar 2014 14:47:18 +0000 (+0100) Subject: lib1513: fix callback proto to silence warning X-Git-Tag: curl-7_37_0~234 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=713402982fa7cf8beb9a12a8739348f7da06c1a6;p=curl lib1513: fix callback proto to silence warning --- diff --git a/tests/libtest/lib1513.c b/tests/libtest/lib1513.c index 9f3deaebf..f97ca5233 100644 --- a/tests/libtest/lib1513.c +++ b/tests/libtest/lib1513.c @@ -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; }