Compiler warning fix

This commit is contained in:
Yang Tse 2006-09-10 23:45:54 +00:00
parent c30e908034
commit 055022a55f
1 changed files with 1 additions and 1 deletions

View File

@ -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:
/*