use size_t for the data, but keep the protos use ssize_t to better fit

with the existing transfer.c code
This commit is contained in:
Daniel Stenberg
2004-03-04 15:25:06 +00:00
parent 78e47fbb5c
commit 1eb9fd6c4d
2 changed files with 10 additions and 6 deletions

View File

@@ -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