From: Steve Holme Date: Sun, 3 Mar 2013 13:55:01 +0000 (+0000) Subject: pingpong.c: Fix enumerated type mixed with another type X-Git-Tag: curl-7_30_0~201 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=fa637c6cab7d3d945381e4b670b6919c51e48eea;p=curl pingpong.c: Fix enumerated type mixed with another type --- diff --git a/lib/pingpong.c b/lib/pingpong.c index ec0047109..0040b3f52 100644 --- a/lib/pingpong.c +++ b/lib/pingpong.c @@ -509,8 +509,8 @@ CURLcode Curl_pp_disconnect(struct pingpong *pp) bool Curl_pp_moredata(struct pingpong *pp) { - return (!pp->sendleft && pp->cache && pp->nread_resp < pp->cache_size); + return (!pp->sendleft && pp->cache && pp->nread_resp < pp->cache_size) ? + TRUE : FALSE; } - #endif