Skip to content
Snippets Groups Projects
Commit 4816294f authored by Daniel Stenberg's avatar Daniel Stenberg
Browse files

compiler warning fix, compare struct pointers of the same type

parent 6587ff44
No related branches found
No related tags found
No related merge requests found
......@@ -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;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment