diff options
author | Steve Holme <steve_holme@hotmail.com> | 2013-03-21 07:33:45 +0000 |
---|---|---|
committer | Steve Holme <steve_holme@hotmail.com> | 2013-03-21 07:33:45 +0000 |
commit | 7713e67bc502e62c630a59b62e1efd70aaad518a (patch) | |
tree | a526ad48710eef9a7e0ca9748c46ccfcae7d919f /lib | |
parent | 9a13a516b437356dbe706b393171222334f41909 (diff) |
multi.c: Fix compilation warning
warning: an enumerated type is mixed with another type
Diffstat (limited to 'lib')
-rw-r--r-- | lib/multi.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/multi.c b/lib/multi.c index 2d1d7b5b2..5645fcf07 100644 --- a/lib/multi.c +++ b/lib/multi.c @@ -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) |