Commit 95368d9c authored by Yang Tse's avatar Yang Tse
Browse files

fix compiler warning: enumerated type mixed with another type

parent 74f9c570
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1096,7 +1096,7 @@ CURLcode curl_easy_recv(CURL *curl, void *buffer, size_t buflen, size_t *n)
    return CURLE_AGAIN;

  if(ret1 != CURLE_OK)
    return ret1;
    return (CURLcode)ret1;

  *n = (size_t)n1;