Skip to content

Commit

Permalink
multi.c: Fixed compilation warning from commit 3c8c873
Browse files Browse the repository at this point in the history
warning: implicit conversion from enumeration type 'CURLMcode' to
different enumeration type 'CURLcode'
  • Loading branch information
captain-caveman2k committed Sep 6, 2014
1 parent 21db158 commit c25cd90
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/multi.c
Expand Up @@ -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;
Expand Down

0 comments on commit c25cd90

Please sign in to comment.