mirror of
https://github.com/curl/curl.git
synced 2026-07-24 18:17:16 +03:00
typecast assign to ftpport from int to prevent warnings
This commit is contained in:
parent
446b9467da
commit
17d61e4f29
1 changed files with 1 additions and 1 deletions
|
|
@ -1677,7 +1677,7 @@ static CURLcode ftp_state_port_resp(struct connectdata *conn,
|
|||
{
|
||||
struct FTP *ftp = conn->proto.ftp;
|
||||
struct SessionHandle *data = conn->data;
|
||||
ftpport fcmd = ftp->count1;
|
||||
ftpport fcmd = (ftpport)ftp->count1;
|
||||
CURLcode result = CURLE_OK;
|
||||
|
||||
if(ftpcode != 200) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue