mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-10 23:24:38 +00:00
GCC4.6: Squash warning in lzo1x_decompress.c
lzo1x_decompress.c: In function ‘parse_header’: lzo1x_decompress.c:35:5: warning: variable ‘level’ set but not used [-Wunused-but-set-variable] Signed-off-by: Marek Vasut <marek.vasut@gmail.com> Acked-by: Mike Frysinger <vapier@gentoo.org>
This commit is contained in:
parent
2984fd1673
commit
7b8ffea2ac
1 changed files with 1 additions and 2 deletions
|
@ -32,7 +32,6 @@ static const unsigned char lzop_magic[] = {
|
|||
|
||||
static inline const unsigned char *parse_header(const unsigned char *src)
|
||||
{
|
||||
u8 level = 0;
|
||||
u16 version;
|
||||
int i;
|
||||
|
||||
|
@ -47,7 +46,7 @@ static inline const unsigned char *parse_header(const unsigned char *src)
|
|||
version = get_unaligned_be16(src);
|
||||
src += 7;
|
||||
if (version >= 0x0940)
|
||||
level = *src++;
|
||||
src++;
|
||||
if (get_unaligned_be32(src) & HEADER_HAS_FILTER)
|
||||
src += 4; /* filter info */
|
||||
|
||||
|
|
Loading…
Reference in a new issue