]> Dogcows Code - chaz/tar/commitdiff
(read_and_process): Fix type of "size"
authorSergey Poznyakoff <gray@gnu.org.ua>
Thu, 4 Jan 2007 16:15:10 +0000 (16:15 +0000)
committerSergey Poznyakoff <gray@gnu.org.ua>
Thu, 4 Jan 2007 16:15:10 +0000 (16:15 +0000)
src/compare.c

index c23601d97e400a26dd3658b3019d6d6ece10d3fa..b623562c550a5749161f428e18f8b0c28838b081 100644 (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)
This page took 0.021868 seconds and 4 git commands to generate.