From b3d7161642ae1af0697ed9c30efbe36eed4da7f9 Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Tue, 8 Jun 2010 10:36:06 +0200 Subject: 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. --- lib/transfer.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib') diff --git a/lib/transfer.c b/lib/transfer.c index 191d3dc19..41bf2fe11 100644 --- a/lib/transfer.c +++ b/lib/transfer.c @@ -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) -- cgit v1.2.3