Skip to content
Snippets Groups Projects
Commit 055022a5 authored by Yang Tse's avatar Yang Tse
Browse files

Compiler warning fix

parent c30e9080
No related branches found
No related tags found
No related merge requests found
......@@ -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:
/*
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment