From b38189c7b41cc2a327ab690a523441bcb3e6f9fe Mon Sep 17 00:00:00 2001 From: Yang Tse Date: Tue, 1 Jun 2010 12:25:14 +0200 Subject: fix compiler warning: enumerated type mixed with another type --- lib/url.c | 2 +- src/main.c | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/url.c b/lib/url.c index 6c48dcb2e..3f55f7bda 100644 --- a/lib/url.c +++ b/lib/url.c @@ -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); diff --git a/src/main.c b/src/main.c index 4e0128cb7..5827b5ed4 100644 --- a/src/main.c +++ b/src/main.c @@ -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; -- cgit v1.2.3