1
0
mirror of https://github.com/moparisthebest/curl synced 2025-02-28 09:21:50 -05:00

fix compiler warning: enumerated type mixed with another type

This commit is contained in:
Yang Tse 2010-06-01 12:25:14 +02:00
parent 1bb04927f3
commit b38189c7b4
2 changed files with 3 additions and 3 deletions

View File

@ -2463,7 +2463,7 @@ CURLcode Curl_setopt(struct SessionHandle *data, CURLoption option,
break;
case CURLOPT_WILDCARDMATCH:
data->set.wildcardmatch = !! va_arg(param, long);
data->set.wildcardmatch = (bool)(0 != va_arg(param, long));
break;
case CURLOPT_CHUNK_BGN_FUNCTION:
data->set.chunk_bgn = va_arg(param, curl_chunk_bgn_callback);

View File

@ -2406,12 +2406,12 @@ static ParameterError getparameter(char *flag, /* f or -long-flag */
config->ftp_pret = toggle;
break;
case 'D': /* --proto */
config->proto_present = 1;
config->proto_present = TRUE;
if(proto2num(config, &config->proto, nextarg))
return PARAM_BAD_USE;
break;
case 'E': /* --proto-redir */
config->proto_redir_present = 1;
config->proto_redir_present = TRUE;
if(proto2num(config, &config->proto_redir, nextarg))
return PARAM_BAD_USE;
break;