From faf980ffb59084536d93cf504e72f361f33f9f8e Mon Sep 17 00:00:00 2001 From: Wayne Davison Date: Tue, 11 Nov 2008 18:05:27 -0800 Subject: [PATCH] Make sparse_seek an OFF_T (pointed out by Pedro Valasco). --- fileio.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) { -- 2.34.1