diff options
author | Daniel Stenberg <daniel@haxx.se> | 2014-03-28 15:47:18 +0100 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2014-03-29 23:14:42 +0100 |
commit | 713402982fa7cf8beb9a12a8739348f7da06c1a6 (patch) | |
tree | dd570174b2f3472fc4c57823d769dd0eb80e7424 /tests/libtest | |
parent | 2baf38f7c3251deff6691311ab549014d305d1cb (diff) |
lib1513: fix callback proto to silence warning
Diffstat (limited to 'tests/libtest')
-rw-r--r-- | tests/libtest/lib1513.c | 10 |
1 files changed, 9 insertions, 1 deletions
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; } |