mirror of
https://github.com/curl/curl.git
synced 2025-03-31 16:00:35 +08: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