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

fix compiler warning: enumerated type mixed with another type

parent 40f8aaed
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -603,9 +603,9 @@ CURLcode Curl_SOCKS5(const char *proxy_name,

    if(rc == CURLRESOLV_PENDING) {
      /* this requires that we're in "wait for resolve" state */
      rc = Curl_wait_for_resolv(conn, &dns);
      if(rc)
        return rc;
      code = Curl_wait_for_resolv(conn, &dns);
      if(code != CURLE_OK)
        return code;
    }

    /*