From: Steve Holme Date: Thu, 21 Mar 2013 07:33:45 +0000 (+0000) Subject: multi.c: Fix compilation warning X-Git-Tag: curl-7_30_0~87 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=7713e67bc502e62c630a59b62e1efd70aaad518a;p=thirdparty%2Fcurl.git multi.c: Fix compilation warning warning: an enumerated type is mixed with another type --- diff --git a/lib/multi.c b/lib/multi.c index 2d1d7b5b26..5645fcf071 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)