1
0
mirror of https://github.com/moparisthebest/curl synced 2024-12-21 23:58:49 -05:00

prevent compiler warning

This commit is contained in:
Daniel Stenberg 2005-04-19 23:38:57 +00:00
parent 8bd6d6a4de
commit f30e8b11eb

View File

@ -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;