From: Yang Tse Date: Sun, 10 Sep 2006 23:45:54 +0000 (+0000) Subject: Compiler warning fix X-Git-Tag: upstream/7.37.1~10033 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=055022a55fedb0a1a5c299d4ba59ed5620025928;p=platform%2Fupstream%2Fcurl.git Compiler warning fix --- diff --git a/lib/url.c b/lib/url.c index 6e170d3..3f479ed 100644 --- a/lib/url.c +++ b/lib/url.c @@ -575,7 +575,7 @@ CURLcode Curl_setopt(struct SessionHandle *data, CURLoption option, * Verbose means infof() calls that give a lot of information about * the connection and transfer procedures as well as internal choices. */ - data->set.verbose = = (bool)(0 != va_arg(param, long)); + data->set.verbose = (bool)(0 != va_arg(param, long)); break; case CURLOPT_HEADER: /*