compiler warning fix

This commit is contained in:
Yang Tse
2007-02-01 01:42:13 +00:00
parent 5565f45f5e
commit 54db98c220
8 changed files with 36 additions and 23 deletions

View File

@@ -3208,7 +3208,7 @@ static CURLcode ftp_nb_type(struct connectdata *conn,
state(conn, newstate);
/* keep track of our current transfer type */
ftpc->transfertype = want;
ftpc->transfertype = (char)want;
return CURLE_OK;
}