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-Tag: v3.1.0pre1~452 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=faf980ffb59084536d93cf504e72f361f33f9f8e;p=thirdparty%2Frsync.git 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) {