From 49818a837847338d2bba7d38dbb212ac58cedf29 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 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) { -- 2.34.1