Eliminate an unused assignment.

This commit is contained in:
kientzle 2009-12-28 02:29:21 +00:00
parent 0ce60e8858
commit d9802a8c44

View File

@ -229,8 +229,8 @@ compress_bidder_init(struct archive_read_filter *self)
/* XXX MOVE THE FOLLOWING OUT OF INIT() XXX */ /* XXX MOVE THE FOLLOWING OUT OF INIT() XXX */
code = getbits(self, 8); /* Skip first signature byte. */ (void)getbits(self, 8); /* Skip first signature byte. */
code = getbits(self, 8); /* Skip second signature byte. */ (void)getbits(self, 8); /* Skip second signature byte. */
code = getbits(self, 8); code = getbits(self, 8);
state->maxcode_bits = code & 0x1f; state->maxcode_bits = code & 0x1f;