]> Dogcows Code - chaz/tar/commitdiff
(xheader_read): Remove unused variable
authorSergey Poznyakoff <gray@gnu.org.ua>
Thu, 30 Nov 2006 09:53:20 +0000 (09:53 +0000)
committerSergey Poznyakoff <gray@gnu.org.ua>
Thu, 30 Nov 2006 09:53:20 +0000 (09:53 +0000)
src/xheader.c

index 36afd3d77509ddcda8bbb79b12347858a3861c90..70d287c05c58f264807f6f0216ff16a7e8ec553e 100644 (file)
@@ -647,12 +647,10 @@ void
 xheader_read (union block *p, size_t size)
 {
   size_t j = 0;
-  size_t nblocks;
 
   free (extended_header.buffer);
   size += BLOCKSIZE;
   extended_header.size = size;
-  nblocks = (size + BLOCKSIZE - 1) / BLOCKSIZE;
   extended_header.buffer = xmalloc (size + 1);
   extended_header.buffer[size] = '\0';
 
This page took 0.022788 seconds and 4 git commands to generate.