mirror of
https://github.com/curl/curl.git
synced 2026-07-15 22:57:17 +03:00
pingpong.c: Fix enumerated type mixed with another type
This commit is contained in:
parent
036366f1ef
commit
fa637c6cab
1 changed files with 2 additions and 2 deletions
|
|
@ -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…
Add table
Add a link
Reference in a new issue