From 15e3dfe1d34040165d5ef12c69e8b91dc8eda8ef Mon Sep 17 00:00:00 2001 From: Yang Tse Date: Mon, 9 Oct 2006 11:21:40 +0000 Subject: Compiler warning fix --- lib/multi.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib') diff --git a/lib/multi.c b/lib/multi.c index 48863c8e6..041209c49 100644 --- a/lib/multi.c +++ b/lib/multi.c @@ -377,7 +377,7 @@ CURLMcode curl_multi_add_handle(CURLM *multi_handle, cl = multi->closure; while(cl) { struct closure *next = cl->next; - if(cl->easy_handle == easy_handle) { + if(cl->easy_handle == (struct SessionHandle *)easy_handle) { /* remove this handle from the closure list */ free(cl); if(prev) -- cgit v1.2.3