1
0
Fork 0
mirror of https://github.com/borgbackup/borg.git synced 2024-12-25 09:19:31 +00:00

change 2 more chunker vars to off_t

so they get 64bit on 32bit platforms.
This commit is contained in:
Thomas Waldmann 2015-09-06 22:06:52 +02:00
parent 32e276c526
commit e244fe2f69

View file

@ -130,7 +130,7 @@ static int
chunker_fill(Chunker *c)
{
ssize_t n;
size_t offset, length;
off_t offset, length;
PyObject *data;
memmove(c->data, c->data + c->last, c->position + c->remaining - c->last);
c->position -= c->last;