mirror of
https://github.com/freebsd/freebsd-src.git
synced 2024-11-28 11:12:46 +00:00
Eliminate an unused assignment.
This commit is contained in:
parent
2866e9d5d0
commit
cc1e3ebe54
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=201094
@ -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;
|
||||||
|
Loading…
Reference in New Issue
Block a user