diff options
| author | Tim Kientzle <kientzle@FreeBSD.org> | 2009-12-28 02:29:21 +0000 |
|---|---|---|
| committer | Tim Kientzle <kientzle@FreeBSD.org> | 2009-12-28 02:29:21 +0000 |
| commit | cc1e3ebe54ee5f8b9cdb91e7e1b7257754a317dd (patch) | |
| tree | 59ce127fe2f90ae17b14ee3d0a30ec836274c5f5 | |
| parent | 2866e9d5d00f0a0c7c7d4344d5a2b09a1dd97c7e (diff) | |
Notes
| -rw-r--r-- | lib/libarchive/archive_read_support_compression_compress.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libarchive/archive_read_support_compression_compress.c b/lib/libarchive/archive_read_support_compression_compress.c index e115d25a2426..c6d4e8550e3e 100644 --- a/lib/libarchive/archive_read_support_compression_compress.c +++ b/lib/libarchive/archive_read_support_compression_compress.c @@ -229,8 +229,8 @@ compress_bidder_init(struct archive_read_filter *self) /* XXX MOVE THE FOLLOWING OUT OF INIT() XXX */ - code = getbits(self, 8); /* Skip first signature byte. */ - code = getbits(self, 8); /* Skip second signature byte. */ + (void)getbits(self, 8); /* Skip first signature byte. */ + (void)getbits(self, 8); /* Skip second signature byte. */ code = getbits(self, 8); state->maxcode_bits = code & 0x1f; |
