diff options
author | Daniel Stenberg <daniel@haxx.se> | 2005-02-10 07:45:26 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2005-02-10 07:45:26 +0000 |
commit | 17d61e4f29e3e1f39a845834e268e67a5afa46e1 (patch) | |
tree | b4fc4f547334051dd0a57491964094417ecff311 /lib | |
parent | 446b9467dabb5ffeabd37a7c56fe1cc9049578b5 (diff) |
typecast assign to ftpport from int to prevent warnings
Diffstat (limited to 'lib')
-rw-r--r-- | lib/ftp.c | 2 |
1 files changed, 1 insertions, 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) { |