fix compiler warning "enumerated type mixed with another type"

This commit is contained in:
Yang Tse 2007-02-21 05:48:07 +00:00
parent 83e078256c
commit 48029d7e74

View File

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