Commit 8a7d5837 authored by Yang Tse's avatar Yang Tse
Browse files

fix compiler warning

parent bdbaedc4
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -479,7 +479,7 @@ int Curl_select(int nfds,
      SET_SOCKERRNO(EINVAL);
      return -1;
    }
    timeout_ms = (timeout->tv_sec * 1000) + (timeout->tv_usec / 1000);
    timeout_ms = (int)(timeout->tv_sec * 1000) + (int)(timeout->tv_usec / 1000);
  }
  else {
    timeout_ms = -1;