mirror of
https://github.com/curl/curl.git
synced 2026-08-25 08:13:31 +03:00
Compiler warning fix
This commit is contained in:
parent
2bf4d9a22c
commit
cdbbb7d900
2 changed files with 2 additions and 2 deletions
|
|
@ -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.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue