mirror of
https://github.com/curl/curl.git
synced 2026-07-30 12:58:04 +03:00
Compiler warning fix
This commit is contained in:
parent
2bf4d9a22c
commit
cdbbb7d900
2 changed files with 2 additions and 2 deletions
|
|
@ -512,7 +512,7 @@ CURLMcode curl_multi_remove_handle(CURLM *multi_handle,
|
|||
}
|
||||
|
||||
if(easy) {
|
||||
bool premature = easy->state != CURLM_STATE_COMPLETED;
|
||||
bool premature = (bool)(easy->state != CURLM_STATE_COMPLETED);
|
||||
|
||||
/* If the 'state' is not INIT or COMPLETED, we might need to do something
|
||||
nice to put the easy_handle in a good known state when this returns. */
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue