Unused variable.

This commit is contained in:
Con Kolivas 2011-03-21 21:29:01 +11:00
parent 43eb2e4594
commit 1647b4036d
3 changed files with 5 additions and 2 deletions

View file

@ -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

View file

@ -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
View file

@ -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");