From: Sergey Poznyakoff Date: Thu, 4 Jan 2007 16:15:10 +0000 (+0000) Subject: (read_and_process): Fix type of "size" X-Git-Url: https://git.dogcows.com/gitweb?a=commitdiff_plain;h=e24d8574a8a44946dc236a111a82dd9c86e0b0e3;p=chaz%2Ftar (read_and_process): Fix type of "size" --- 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)