From: Steve Holme Date: Wed, 20 Mar 2013 23:36:46 +0000 (+0000) Subject: multi.c: fix compilation error X-Git-Tag: curl-7_30_0~88 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=9a13a516b437356dbe706b393171222334f41909;p=curl multi.c: fix compilation error warning: conversion from enumeration type to different enumeration type --- 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; }