From: Daniel Stenberg Date: Wed, 16 Jan 2002 14:49:51 +0000 (+0000) Subject: Curl_write's 5th argument now is signed X-Git-Tag: curl-7_9_3-pre2~4 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=ed21701df3fc646ced9bbda6e6107fc6a8ce3af8;p=curl Curl_write's 5th argument now is signed --- diff --git a/lib/sendf.h b/lib/sendf.h index 7b6cff7de..67248108e 100644 --- a/lib/sendf.h +++ b/lib/sendf.h @@ -51,6 +51,6 @@ int Curl_read(struct connectdata *conn, int sockfd, /* internal write-function, does plain socket, SSL and krb4 */ CURLcode Curl_write(struct connectdata *conn, int sockfd, void *mem, size_t len, - size_t *written); + ssize_t *written); #endif