mirror of
https://github.com/moparisthebest/curl
synced 2025-02-28 17:31:46 -05:00
Compiler warning fix
This commit is contained in:
parent
c30e908034
commit
055022a55f
@ -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:
|
||||
/*
|
||||
|
Loading…
x
Reference in New Issue
Block a user