compiler warning fix, compare struct pointers of the same type

This commit is contained in:
Daniel Stenberg 2004-02-05 09:37:04 +00:00
Родитель 6587ff440a
Коммит 4816294f52
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -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;
}