summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2000-08-17 15:39:50 +0000
committerDaniel Stenberg <daniel@haxx.se>2000-08-17 15:39:50 +0000
commit4496e8ab8c14570ab6f26cae5060ba7977e0a92f (patch)
tree814618e39263346b33057d575389ff6b17d6836a
parentc3318b49fd28e9f18c57ef57d20ebcfe5f85aa8b (diff)
downloadgnurl-4496e8ab8c14570ab6f26cae5060ba7977e0a92f.tar.gz
gnurl-4496e8ab8c14570ab6f26cae5060ba7977e0a92f.tar.bz2
gnurl-4496e8ab8c14570ab6f26cae5060ba7977e0a92f.zip
removed the HAVE_VPRINTF check
-rw-r--r--lib/highlevel.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/lib/highlevel.c b/lib/highlevel.c
index da3f4c94b..18c3c8728 100644
--- a/lib/highlevel.c
+++ b/lib/highlevel.c
@@ -84,9 +84,6 @@
#include <sys/select.h>
#endif
-#ifndef HAVE_VPRINTF
-#error "We can't compile without vprintf() support!"
-#endif
#ifndef HAVE_SELECT
#error "We can't compile without select() support!"
#endif
@@ -517,7 +514,7 @@ _Transfer(struct connectdata *c_conn)
char scratch[BUFSIZE * 2];
int i, si;
- int bytes_written;
+ size_t bytes_written;
if(data->crlf)
buf = data->buffer; /* put it back on the buffer */