mirror of
https://github.com/curl/curl.git
synced 2026-08-26 22:34:45 +03:00
use curl_off_t instead of off_t!
This commit is contained in:
parent
6cd0a90b52
commit
b791e158f0
13 changed files with 67 additions and 81 deletions
|
|
@ -163,12 +163,12 @@ CURLcode Curl_file(struct connectdata *conn)
|
|||
*/
|
||||
CURLcode res = CURLE_OK;
|
||||
struct stat statbuf;
|
||||
off_t expected_size=0;
|
||||
curl_off_t expected_size=0;
|
||||
bool fstated=FALSE;
|
||||
ssize_t nread;
|
||||
struct SessionHandle *data = conn->data;
|
||||
char *buf = data->state.buffer;
|
||||
off_t bytecount = 0;
|
||||
curl_off_t bytecount = 0;
|
||||
struct timeval start = Curl_tvnow();
|
||||
struct timeval now = start;
|
||||
int fd;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue