Commit e39ab6f2 authored by Yang Tse's avatar Yang Tse
Browse files

multi: fix compiler warning: enumerated type mixed with another type

parent c9081a82
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -982,7 +982,8 @@ static CURLMcode multi_runsingle(struct Curl_multi *multi,
         start time stored */

      timeout_ms = Curl_timeleft(easy->easy_conn, &now,
                                 easy->state <= CURLM_STATE_WAITDO);
                                 (easy->state <= CURLM_STATE_WAITDO)?
                                 TRUE:FALSE);

      if(timeout_ms < 0) {
        /* Handle timed out */