From 055022a55fedb0a1a5c299d4ba59ed5620025928 Mon Sep 17 00:00:00 2001 From: Yang Tse Date: Sun, 10 Sep 2006 23:45:54 +0000 Subject: Compiler warning fix --- lib/url.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib') diff --git a/lib/url.c b/lib/url.c index 6e170d3ef..3f479ed22 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: /* -- cgit v1.2.3