aboutsummaryrefslogtreecommitdiff
path: root/lib/transfer.h
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2004-01-22 12:45:50 +0000
committerDaniel Stenberg <daniel@haxx.se>2004-01-22 12:45:50 +0000
commitb791e158f0e04a518dea19fdaf0bfbf71b343c64 (patch)
tree4284e63220eb5883c24351dc2f52282645b3b7cf /lib/transfer.h
parent6cd0a90b523c594c75a5cb517f8081390e9e88df (diff)
use curl_off_t instead of off_t!
Diffstat (limited to 'lib/transfer.h')
-rw-r--r--lib/transfer.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/transfer.h b/lib/transfer.h
index cd89a9a04..d1b1a7697 100644
--- a/lib/transfer.h
+++ b/lib/transfer.h
@@ -38,11 +38,11 @@ CURLcode Curl_readwrite_init(struct connectdata *conn);
CURLcode
Curl_Transfer (struct connectdata *data,
int sockfd, /* socket to read from or -1 */
- off_t size, /* -1 if unknown at this point */
+ curl_off_t size, /* -1 if unknown at this point */
bool getheader, /* TRUE if header parsing is wanted */
- off_t *bytecountp, /* return number of bytes read */
+ curl_off_t *bytecountp, /* return number of bytes read */
int writesockfd, /* socket to write to, it may very well be
the same we read from. -1 disables */
- off_t *writebytecountp /* return number of bytes written */
+ curl_off_t *writecountp /* return number of bytes written */
);
#endif