projects
/
curl
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
2baf38f
)
lib1513: fix callback proto to silence warning
author
Daniel Stenberg
<daniel@haxx.se>
Fri, 28 Mar 2014 14:47:18 +0000
(15:47 +0100)
committer
Daniel Stenberg
<daniel@haxx.se>
Sat, 29 Mar 2014 22:14:42 +0000
(23:14 +0100)
tests/libtest/lib1513.c
patch
|
blob
|
history
diff --git
a/tests/libtest/lib1513.c
b/tests/libtest/lib1513.c
index 9f3deaebf065e4eeb7c479882a67cf7cc53e7997..f97ca5233fe5834f8796c3890f6ea3fc9e881f38 100644
(file)
--- 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;
}