mirror of
https://github.com/curl/curl.git
synced 2026-06-02 03:14:15 +03:00
multi.c: Fixed compilation warning from commit 3c8c873252
warning: implicit conversion from enumeration type 'CURLMcode' to different enumeration type 'CURLcode'
This commit is contained in:
parent
21db158722
commit
c25cd9094b
1 changed files with 1 additions and 1 deletions
|
|
@ -1054,7 +1054,7 @@ static CURLMcode multi_runsingle(struct Curl_multi *multi,
|
|||
|
||||
/* add this handle to the list of connect-pending handles */
|
||||
if(!Curl_llist_insert_next(multi->pending, multi->pending->tail, data))
|
||||
data->result = CURLM_OUT_OF_MEMORY;
|
||||
data->result = CURLE_OUT_OF_MEMORY;
|
||||
else
|
||||
data->result = CURLE_OK;
|
||||
break;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue