From e24d8574a8a44946dc236a111a82dd9c86e0b0e3 Mon Sep 17 00:00:00 2001 From: Sergey Poznyakoff Date: Thu, 4 Jan 2007 16:15:10 +0000 Subject: [PATCH] (read_and_process): Fix type of "size" --- src/compare.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/compare.c b/src/compare.c index c23601d..b623562 100644 --- a/src/compare.c +++ b/src/compare.c @@ -138,7 +138,7 @@ read_and_process (struct tar_stat_info *st, int (*processor) (size_t, char *)) { union block *data_block; size_t data_size; - size_t size = st->stat.st_size; + off_t size = st->stat.st_size; mv_begin (st); while (size) -- 2.44.0