fix compiler warning: enumerated type mixed with another type

This commit is contained in:
Yang Tse 2009-09-17 16:11:54 +00:00
Родитель ede2ac0ea2
Коммит 0c90cb7b83
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -445,7 +445,7 @@ static CURLcode ftp_readresp(curl_socket_t sockfd,
#endif /* CURL_DOES_CONVERSIONS */
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;
}
}