chunker - fix 4GB files on 32-bit systems

From code inspection - effect not actually tested.
This commit is contained in:
Alan Jenkins 2015-08-20 17:19:48 +01:00
parent 7c6f3ece66
commit ce3e67cb96
1 changed files with 2 additions and 1 deletions

View File

@ -83,7 +83,8 @@ typedef struct {
PyObject *fd;
int fh;
int done, eof;
size_t remaining, bytes_read, bytes_yielded, position, last;
size_t remaining, position, last;
off_t bytes_read, bytes_yielded;
} Chunker;
static Chunker *