dedup

deduplicating backup program
git clone git://git.2f30.org/dedup
Log | Files | Refs | README | LICENSE

commit b1fd149a54efd7fe0d3bf4dcd5b3c48467d4434f
parent 742ebd2af9a3c9215afc63c276db4e9e1ba0e73c
Author: sin <sin@2f30.org>
Date:   Tue, 19 Feb 2019 09:56:28 +0000

Fix type

Diffstat:
Mdedup.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dedup.c b/dedup.c @@ -228,7 +228,7 @@ str2bin(char *s, uint8_t *d) off_t xlseek(int fd, off_t offset, int whence) { - int ret; + off_t ret; ret = lseek(fd, offset, whence); if (ret < 0)