Remove a dead assignment.

This commit is contained in:
Tim Kientzle 2009-12-28 02:04:42 +00:00
parent b4a4198e53
commit 153ee32724

View File

@ -365,7 +365,6 @@ archive_compressor_gzip_finish(struct archive_write *a)
block_length = state->stream.next_out - state->compressed;
/* Tricky calculation to determine size of last block. */
target_block_length = block_length;
if (a->bytes_in_last_block <= 0)
/* Default or Zero: pad to full block */
target_block_length = a->bytes_per_block;