mirror of
https://github.com/ckolivas/lrzip.git
synced 2026-01-07 17:10:00 +01:00
Unused variable.
This commit is contained in:
parent
43eb2e4594
commit
1647b4036d
2
AUTHORS
2
AUTHORS
|
|
@ -18,3 +18,5 @@ Jari Aalto for documentation and typos and git help
|
|||
Jon Tibble for nasm tests & Solaris support
|
||||
Michael Blumenkrantz for updated autotools
|
||||
Serge Belyshev for encryption help and code
|
||||
Ulrich Drepper for MD5 implementation
|
||||
PolarSSL authors for sha512 + aes128 implementation
|
||||
|
|
|
|||
|
|
@ -1,4 +1,7 @@
|
|||
lrzip ChangeLog
|
||||
MARCH 2011, version 0.600 Con Kolivas
|
||||
* Massive rewrite
|
||||
|
||||
MARCH 2011, version 0.571 Con Kolivas
|
||||
* Only retry mmaping if it's a memory error, otherwise it may give spurious
|
||||
errors.
|
||||
|
|
|
|||
2
rzip.c
2
rzip.c
|
|
@ -205,8 +205,6 @@ static inline void put_u32(rzip_control *control, void *ss, uint32_t s)
|
|||
/* Put a variable length of bytes dependant on how big the chunk is */
|
||||
static inline void put_vchars(rzip_control *control, void *ss, i64 s, int length)
|
||||
{
|
||||
int bytes;
|
||||
|
||||
s = htole64(s);
|
||||
if (unlikely(write_stream(control, ss, 0, (uchar *)&s, length)))
|
||||
fatal("Failed to put_vchars\n");
|
||||
|
|
|
|||
Loading…
Reference in a new issue