mirror of
https://github.com/curl/curl.git
synced 2026-07-25 09:47:49 +03:00
multi.c: Fix compilation warning
warning: an enumerated type is mixed with another type
This commit is contained in:
parent
9a13a516b4
commit
7713e67bc5
1 changed files with 1 additions and 1 deletions
|
|
@ -636,7 +636,7 @@ CURLMcode curl_multi_remove_handle(CURLM *multi_handle,
|
|||
|
||||
bool Curl_multi_pipeline_enabled(const struct Curl_multi* multi)
|
||||
{
|
||||
return multi && multi->pipelining_enabled;
|
||||
return (multi && multi->pipelining_enabled) ? TRUE : FALSE;
|
||||
}
|
||||
|
||||
void Curl_multi_handlePipeBreak(struct SessionHandle *data)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue