From: Wayne Davison Date: Wed, 12 Nov 2008 02:05:27 +0000 (-0800) Subject: Make sparse_seek an OFF_T (pointed out by Pedro Valasco). X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/commitdiff_plain/faf980ffb59084536d93cf504e72f361f33f9f8e Make sparse_seek an OFF_T (pointed out by Pedro Valasco). --- diff --git a/fileio.c b/fileio.c index 5b55a0ca..822bb1a8 100644 --- a/fileio.c +++ b/fileio.c @@ -29,7 +29,7 @@ extern int sparse_files; static char last_byte; -static size_t sparse_seek = 0; +static OFF_T sparse_seek = 0; int sparse_end(int f) {