pingpong.c: Fix enumerated type mixed with another type

This commit is contained in:
Steve Holme 2013-03-03 13:55:01 +00:00
parent 036366f1ef
commit fa637c6cab

View File

@ -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