pingpong.c: Fix enumerated type mixed with another type
This commit is contained in:
parent
036366f1ef
commit
fa637c6cab
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user