diff options
author | Daniel Stenberg <daniel@haxx.se> | 2004-03-04 15:25:06 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2004-03-04 15:25:06 +0000 |
commit | 1eb9fd6c4d93f7adbca00556575751537b4be47a (patch) | |
tree | c4d2e4fd82040a7be2e3704565f8fe7035095cb9 /lib/http_chunks.h | |
parent | 78e47fbb5c2e2aaebe54d52c30385feae8c78f18 (diff) | |
download | curl-1eb9fd6c4d93f7adbca00556575751537b4be47a.tar.gz |
use size_t for the data, but keep the protos use ssize_t to better fit
with the existing transfer.c code
Diffstat (limited to 'lib/http_chunks.h')
-rw-r--r-- | lib/http_chunks.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/http_chunks.h b/lib/http_chunks.h index 58a3f12a8..26b79de4e 100644 --- a/lib/http_chunks.h +++ b/lib/http_chunks.h @@ -81,8 +81,8 @@ struct Curl_chunker { char hexbuffer[ MAXNUM_SIZE + 1]; int hexindex; ChunkyState state; - ssize_t datasize; - ssize_t dataleft; /* untouched data amount at the end of the last buffer */ + size_t datasize; + size_t dataleft; /* untouched data amount at the end of the last buffer */ }; #endif |