mirror of
https://github.com/curl/curl.git
synced 2026-08-02 07:00:29 +03:00
Fix compiler warning
This commit is contained in:
parent
a137109a0c
commit
048bfeaaef
2 changed files with 2 additions and 2 deletions
|
|
@ -3264,7 +3264,7 @@ static CURLcode ftp_nb_type(struct connectdata *conn,
|
|||
{
|
||||
struct ftp_conn *ftpc = &conn->proto.ftpc;
|
||||
CURLcode result;
|
||||
char want = ascii?'A':'I';
|
||||
char want = (char)(ascii?'A':'I');
|
||||
|
||||
if (ftpc->transfertype == want) {
|
||||
state(conn, newstate);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue