diff options
author | Daniel Stenberg <daniel@haxx.se> | 2001-01-31 13:54:12 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2001-01-31 13:54:12 +0000 |
commit | c41c5a0ef236f1eb1a973eeb25f47e848c9e68db (patch) | |
tree | 319694e18aded30c73897fb4b776311f54c807a5 /include | |
parent | c0c0283356f288ba98e374964231007f623e84cd (diff) |
curl_read() and Curl_read() now have ssize_t in the last argument
Diffstat (limited to 'include')
-rw-r--r-- | include/curl/curl.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/curl/curl.h b/include/curl/curl.h index cbfc3e1db..9568e880c 100644 --- a/include/curl/curl.h +++ b/include/curl/curl.h @@ -554,7 +554,7 @@ CURLcode curl_setopt(CURL *handle, CURLoption option, ...); CURLcode curl_close(CURL *curl); /* the opposite of curl_open() */ CURLcode curl_read(CURLconnect *c_conn, char *buf, size_t buffersize, - size_t *n); + ssize_t *n); CURLcode curl_write(CURLconnect *c_conn, char *buf, size_t amount, size_t *n); |