mirror of https://github.com/borgbackup/borg.git
chunker - fix 4GB files on 32-bit systems
From code inspection - effect not actually tested.
This commit is contained in:
parent
7c6f3ece66
commit
ce3e67cb96
|
@ -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 *
|
||||
|
|
Loading…
Reference in New Issue