prevent compiler warning
authorDaniel Stenberg <daniel@haxx.se>
Tue, 19 Apr 2005 23:38:57 +0000 (23:38 +0000)
committerDaniel Stenberg <daniel@haxx.se>
Tue, 19 Apr 2005 23:38:57 +0000 (23:38 +0000)
lib/sslgen.c

index 1945789a32803d2cc4289ff7586d6b48a085040b..e7f0011b2177647da8f04b9c35eaa2407e75133a 100644 (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;