diff options
author | Steve Holme <steve_holme@hotmail.com> | 2013-03-20 23:36:46 +0000 |
---|---|---|
committer | Steve Holme <steve_holme@hotmail.com> | 2013-03-20 23:36:46 +0000 |
commit | 9a13a516b437356dbe706b393171222334f41909 (patch) | |
tree | 924f48f1887d8117e5d50a458ae382df1d40d421 | |
parent | b8a986be06719417158c1612d2b68b65214d0742 (diff) |
multi.c: fix compilation error
warning: conversion from enumeration type to different enumeration type
-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 3e2583a21..2d1d7b5b2 100644 --- a/lib/multi.c +++ b/lib/multi.c @@ -1017,7 +1017,7 @@ static CURLMcode multi_runsingle(struct Curl_multi *multi, /* There was no connection available. We will go to the pending state and wait for an available connection. */ multistate(easy, CURLM_STATE_CONNECT_PEND); - easy->result = CURLM_OK; + easy->result = CURLE_OK; break; } |