Commit c25cd909 authored by Steve Holme's avatar Steve Holme
Browse files

multi.c: Fixed compilation warning from commit 3c8c8732

warning: implicit conversion from enumeration type 'CURLMcode' to
different enumeration type 'CURLcode'
parent 21db1587
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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;