From: Yang Tse Date: Wed, 21 Feb 2007 05:48:07 +0000 (+0000) Subject: fix compiler warning "enumerated type mixed with another type" X-Git-Tag: curl-7_16_2~258 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=48029d7e745f62f4088955032842a671f3215579;p=thirdparty%2Fcurl.git fix compiler warning "enumerated type mixed with another type" --- diff --git a/lib/url.c b/lib/url.c index 05920b72ed..0368fee3af 100644 --- a/lib/url.c +++ b/lib/url.c @@ -1156,7 +1156,7 @@ CURLcode Curl_setopt(struct SessionHandle *data, CURLoption option, break; case CURLOPT_FTP_SSL_CCC: - data->set.ftp_ccc = va_arg(param, long); + data->set.ftp_ccc = (curl_ftpccc)va_arg(param, long); break; case CURLOPT_FTP_SKIP_PASV_IP: