Commit b3d71616 authored by Daniel Stenberg's avatar Daniel Stenberg
Browse files

transfer: warning: implicit conversion

There is an implicit conversion from "unsigned long" to "long";
rounding, sign extension, or loss of accuracy may result.

Fixed by an added typecast.
parent 3b47d231
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -734,7 +734,7 @@ static CURLcode readwrite_data(struct SessionHandle *data,

      /* Parse the excess data */
      k->str += nread;
      nread = excess;
      nread = (ssize_t)excess;

      result = Curl_rtsp_rtp_readwrite(data, conn, &nread, &readmore);
      if(result)