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.0.5pre2~5 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=49818a837847338d2bba7d38dbb212ac58cedf29;p=thirdparty%2Frsync.git Make sparse_seek an OFF_T (pointed out by Pedro Valasco). --- diff --git a/fileio.c b/fileio.c index f086494b..5ff58b65 100644 --- a/fileio.c +++ b/fileio.c @@ -28,7 +28,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) {