Commit 7713e67b authored by Steve Holme's avatar Steve Holme
Browse files

multi.c: Fix compilation warning

warning: an enumerated type is mixed with another type
parent 9a13a516
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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)