made Curl_nss_send() take const data to kill compiler warning

This commit is contained in:
Daniel Stenberg
2008-06-21 21:19:42 +00:00
parent a837bd08b0
commit 98042b858d
3 changed files with 4 additions and 4 deletions

View File

@@ -1195,7 +1195,7 @@ error:
/* return number of sent (non-SSL) bytes */
int Curl_nss_send(struct connectdata *conn, /* connection data */
int sockindex, /* socketindex */
void *mem, /* send this data */
const void *mem, /* send this data */
size_t len) /* amount to write */
{
PRInt32 err;