diff options
author | Steve Holme <steve_holme@hotmail.com> | 2014-09-07 00:20:40 +0100 |
---|---|---|
committer | Steve Holme <steve_holme@hotmail.com> | 2014-09-07 00:21:36 +0100 |
commit | c25cd9094b8be1920c1de68d9384ab9dab185dfb (patch) | |
tree | 26dbb6c71a11767050e4e6f93b80ab413f5ab1b6 | |
parent | 21db158722e64ecf40e87b5859b1e05de2ba3c74 (diff) |
multi.c: Fixed compilation warning from commit 3c8c873252
warning: implicit conversion from enumeration type 'CURLMcode' to
different enumeration type 'CURLcode'
-rw-r--r-- | lib/multi.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/multi.c b/lib/multi.c index a680ce916..cd99612ca 100644 --- a/lib/multi.c +++ b/lib/multi.c @@ -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; |