mirror of
https://github.com/curl/curl.git
synced 2026-05-13 14:26:20 +03:00
fix compiler warning: enumerated type mixed with another type
This commit is contained in:
parent
74f9c570ea
commit
95368d9cb4
1 changed files with 1 additions and 1 deletions
|
|
@ -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;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue