aboutsummaryrefslogtreecommitdiff
path: root/lib/sendf.c
diff options
context:
space:
mode:
authorYang Tse <yangsita@gmail.com>2007-01-27 03:14:25 +0000
committerYang Tse <yangsita@gmail.com>2007-01-27 03:14:25 +0000
commitcdbbb7d9006bad8608edb794193ffa629da66a53 (patch)
tree77abd7a24f5bdef48040e9d8951bd42ebd288291 /lib/sendf.c
parent2bf4d9a22cb9b85ff863e46fb35e04c21332447e (diff)
Compiler warning fix
Diffstat (limited to 'lib/sendf.c')
-rw-r--r--lib/sendf.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/sendf.c b/lib/sendf.c
index b66febe32..500bf66f0 100644
--- a/lib/sendf.c
+++ b/lib/sendf.c
@@ -474,7 +474,7 @@ int Curl_read(struct connectdata *conn, /* connection data */
ssize_t nread;
size_t bytesfromsocket = 0;
char *buffertofill = NULL;
- bool pipelining = (conn->data->multi &&
+ bool pipelining = (bool)(conn->data->multi &&
Curl_multi_canPipeline(conn->data->multi));
/* Set 'num' to 0 or 1, depending on which socket that has been sent here.