Commit d6168892 authored by Yang Tse's avatar Yang Tse
Browse files

fix compiler warning: enumerated type mixed with another type

parent 4aee6822
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -638,7 +638,7 @@ int Curl_read(struct connectdata *conn, /* connection data */
      nread = Curl_sec_read(conn, sockfd, buffertofill,
                            bytesfromsocket);
    else {
      CURLcode ret = Curl_read_plain(sockfd, buffertofill, bytesfromsocket,
      int ret = Curl_read_plain(sockfd, buffertofill, bytesfromsocket,
                                     &nread);
      if(ret)
        return ret;