diff options
author | Yang Tse <yangsita@gmail.com> | 2007-02-21 05:48:07 +0000 |
---|---|---|
committer | Yang Tse <yangsita@gmail.com> | 2007-02-21 05:48:07 +0000 |
commit | 48029d7e745f62f4088955032842a671f3215579 (patch) | |
tree | 5ebaa74ce32f55f8320024362d89889acfc6110a /lib | |
parent | 83e078256c1a651ea9e350a5d7aa456520b2a90d (diff) |
fix compiler warning "enumerated type mixed with another type"
Diffstat (limited to 'lib')
-rw-r--r-- | lib/url.c | 2 |
1 files changed, 1 insertions, 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: |