mirror of
https://github.com/curl/curl.git
synced 2026-08-11 08:11:07 +03:00
fix compiler warning "enumerated type mixed with another type"
This commit is contained in:
parent
83e078256c
commit
48029d7e74
1 changed files with 1 additions and 1 deletions
|
|
@ -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:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue