diff options
author | Andy Cedilnik <andy.cedilnik@kitware.com> | 2003-05-16 19:15:42 (GMT) |
---|---|---|
committer | Andy Cedilnik <andy.cedilnik@kitware.com> | 2003-05-16 19:15:42 (GMT) |
commit | 083aba04cfe2dba29b267100f52d2387f35dd487 (patch) | |
tree | 70d74e022901bc1aa34ed01be127c9fe6c80b982 /Source/CTest/Curl/multi.c | |
parent | b524f7573bcc09249006a529ba8c1e2aba8283f4 (diff) | |
download | CMake-083aba04cfe2dba29b267100f52d2387f35dd487.zip CMake-083aba04cfe2dba29b267100f52d2387f35dd487.tar.gz CMake-083aba04cfe2dba29b267100f52d2387f35dd487.tar.bz2 |
ERR: Attempt to remove more warnings
Diffstat (limited to 'Source/CTest/Curl/multi.c')
-rw-r--r-- | Source/CTest/Curl/multi.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/CTest/Curl/multi.c b/Source/CTest/Curl/multi.c index 8548354..5ccd337 100644 --- a/Source/CTest/Curl/multi.c +++ b/Source/CTest/Curl/multi.c @@ -174,7 +174,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((CURL*)(easy->easy_handle) == curl_handle) break; easy=easy->next; } |