diff options
author | Daniel Stenberg <daniel@haxx.se> | 2005-11-30 13:09:48 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2005-11-30 13:09:48 +0000 |
commit | 176d4e85e9566ab00c7aa5da323d4392f49c83c7 (patch) | |
tree | 86da55c829231b5dbf3666f2e54c199f2de08c96 | |
parent | 84d30dffb690fe9eb0186ba45107f6658d6bc3aa (diff) |
cast the va_arg() assignment to ftp_filemethod properly
-rw-r--r-- | lib/url.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -561,7 +561,7 @@ CURLcode Curl_setopt(struct SessionHandle *data, CURLoption option, /* * How do access files over FTP. */ - data->set.ftp_filemethod = va_arg(param, long); + data->set.ftp_filemethod = (curl_ftpfile)va_arg(param, long); break; case CURLOPT_NETRC: /* |