Skip to content
Snippets Groups Projects
Commit f30e8b11 authored by Daniel Stenberg's avatar Daniel Stenberg
Browse files

prevent compiler warning

parent 8bd6d6a4
No related branches found
No related tags found
No related merge requests found
......@@ -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;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment