mirror of
https://github.com/curl/curl.git
synced 2025-01-18 14:04:30 +08:00
fix compiler warning: enumerated type mixed with another type
This commit is contained in:
parent
ede2ac0ea2
commit
0c90cb7b83
@ -445,7 +445,7 @@ static CURLcode ftp_readresp(curl_socket_t sockfd,
|
|||||||
#endif /* CURL_DOES_CONVERSIONS */
|
#endif /* CURL_DOES_CONVERSIONS */
|
||||||
|
|
||||||
if(CURLE_OK != res) {
|
if(CURLE_OK != res) {
|
||||||
result = res; /* Set the outer result variable to this error. */
|
result = (CURLcode)res; /* Set outer result variable to this error. */
|
||||||
keepon = FALSE;
|
keepon = FALSE;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user