mirror of
https://github.com/curl/curl.git
synced 2026-06-18 00:35:37 +03:00
compiler warning fix, compare struct pointers of the same type
This commit is contained in:
parent
6587ff440a
commit
4816294f52
1 changed files with 1 additions and 1 deletions
|
|
@ -196,7 +196,7 @@ CURLMcode curl_multi_remove_handle(CURLM *multi_handle,
|
|||
/* scan through the list and remove the 'curl_handle' */
|
||||
easy = multi->easy.next;
|
||||
while(easy) {
|
||||
if(easy->easy_handle == curl_handle)
|
||||
if(easy->easy_handle == (struct SessionHandle *)curl_handle)
|
||||
break;
|
||||
easy=easy->next;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue