Commit 0c90cb7b authored by Yang Tse's avatar Yang Tse
Browse files

fix compiler warning: enumerated type mixed with another type

parent ede2ac0e
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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;
      }
    }