projects
/
platform
/
upstream
/
curl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
a173e07
)
oops, variables first then code
author
Daniel Stenberg
<daniel@haxx.se>
Tue, 21 Dec 2004 14:33:37 +0000
(14:33 +0000)
committer
Daniel Stenberg
<daniel@haxx.se>
Tue, 21 Dec 2004 14:33:37 +0000
(14:33 +0000)
lib/sendf.c
patch
|
blob
|
history
diff --git
a/lib/sendf.c
b/lib/sendf.c
index
91671b9
..
4094c32
100644
(file)
--- a/
lib/sendf.c
+++ b/
lib/sendf.c
@@
-154,8
+154,8
@@
void Curl_infof(struct SessionHandle *data, const char *fmt, ...)
void Curl_failf(struct SessionHandle *data, const char *fmt, ...)
{
va_list ap;
- va_start(ap, fmt);
size_t len;
+ va_start(ap, fmt);
vsnprintf(data->state.buffer, BUFSIZE, fmt, ap);