From: Daniel Stenberg Date: Tue, 19 Apr 2005 23:38:57 +0000 (+0000) Subject: prevent compiler warning X-Git-Tag: curl-7_14_0~139 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=f30e8b11eb86584620036dcea32ee5d821908664;p=thirdparty%2Fcurl.git prevent compiler warning --- diff --git a/lib/sslgen.c b/lib/sslgen.c index 1945789a32..e7f0011b21 100644 --- a/lib/sslgen.c +++ b/lib/sslgen.c @@ -481,7 +481,7 @@ int Curl_ssl_recv(struct connectdata *conn, /* connection data */ return -1; } - return nread; + return (int)nread; #else /* USE_SSL */ (void)conn;