(read_and_process): Fix type of "size"

This commit is contained in:
Sergey Poznyakoff
2007-01-04 16:15:10 +00:00
parent 4da5205ed6
commit e24d8574a8

View File

@@ -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)