From 48029d7e745f62f4088955032842a671f3215579 Mon Sep 17 00:00:00 2001 From: Yang Tse Date: Wed, 21 Feb 2007 05:48:07 +0000 Subject: [PATCH] fix compiler warning "enumerated type mixed with another type" --- lib/url.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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: -- GitLab