aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorYang Tse <yangsita@gmail.com>2006-09-10 23:45:54 +0000
committerYang Tse <yangsita@gmail.com>2006-09-10 23:45:54 +0000
commit055022a55fedb0a1a5c299d4ba59ed5620025928 (patch)
tree91ef38f215bdea701a056591f6b70bee6f86b71b /lib
parentc30e908034dec008990d58759dd28d3cdbef536b (diff)
Compiler warning fix
Diffstat (limited to 'lib')
-rw-r--r--lib/url.c2
1 files changed, 1 insertions, 1 deletions
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:
/*