mirror of
https://github.com/curl/curl.git
synced 2026-07-24 05:27:15 +03:00
Compiler warning fix
This commit is contained in:
parent
c30e908034
commit
055022a55f
1 changed files with 1 additions and 1 deletions
|
|
@ -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…
Add table
Add a link
Reference in a new issue