From cdbbb7d9006bad8608edb794193ffa629da66a53 Mon Sep 17 00:00:00 2001 From: Yang Tse Date: Sat, 27 Jan 2007 03:14:25 +0000 Subject: Compiler warning fix --- lib/multi.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/multi.c') diff --git a/lib/multi.c b/lib/multi.c index e10f5e434..b501f296f 100644 --- a/lib/multi.c +++ b/lib/multi.c @@ -512,7 +512,7 @@ CURLMcode curl_multi_remove_handle(CURLM *multi_handle, } if(easy) { - bool premature = easy->state != CURLM_STATE_COMPLETED; + bool premature = (bool)(easy->state != CURLM_STATE_COMPLETED); /* If the 'state' is not INIT or COMPLETED, we might need to do something nice to put the easy_handle in a good known state when this returns. */ -- cgit v1.2.3