From 9a13a516b437356dbe706b393171222334f41909 Mon Sep 17 00:00:00 2001
From: Steve Holme <steve_holme@hotmail.com>
Date: Wed, 20 Mar 2013 23:36:46 +0000
Subject: [PATCH] multi.c: fix compilation error

warning: conversion from enumeration type to different enumeration type
---
 lib/multi.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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;
       }