Skip to content
Snippets Groups Projects
Commit 95368d9c authored by Yang Tse's avatar Yang Tse
Browse files

fix compiler warning: enumerated type mixed with another type

parent 74f9c570
No related branches found
No related tags found
No related merge requests found
......@@ -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;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment