diff options
author | Tom Rini <trini@konsulko.com> | 2016-02-08 09:48:04 -0500 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2016-02-08 09:48:04 -0500 |
commit | 57dc53a72460e8e301fa1cc7951b41db8e731485 (patch) | |
tree | 856a679e994fdc529a97763e851ed2e546ba3742 /lib/bzip2/bzlib_compress.c | |
parent | 7b6dc11c1aa69e5cc22d1659f50594edcfab5a9e (diff) | |
parent | 2300184f702656b72394e458bf15f7aaba8af892 (diff) | |
download | u-boot-imx-57dc53a72460e8e301fa1cc7951b41db8e731485.zip u-boot-imx-57dc53a72460e8e301fa1cc7951b41db8e731485.tar.gz u-boot-imx-57dc53a72460e8e301fa1cc7951b41db8e731485.tar.bz2 |
Merge branch 'agust@denx.de' of git://git.denx.de/u-boot-staging
Diffstat (limited to 'lib/bzip2/bzlib_compress.c')
-rw-r--r-- | lib/bzip2/bzlib_compress.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/lib/bzip2/bzlib_compress.c b/lib/bzip2/bzlib_compress.c index c8da1c7..68d948b 100644 --- a/lib/bzip2/bzlib_compress.c +++ b/lib/bzip2/bzlib_compress.c @@ -67,7 +67,7 @@ */ #include "bzlib_private.h" - +#include <compiler.h> /*---------------------------------------------------*/ /*--- Bit stream I/O ---*/ @@ -280,7 +280,8 @@ void sendMTFValues ( EState* s ) { Int32 v, t, i, j, gs, ge, totc, bt, bc, iter; Int32 nSelectors, alphaSize, minLen, maxLen, selCtr; - Int32 nGroups, nBytes; + Int32 nGroups; + Int32 nBytes __maybe_unused; /*-- UChar len [BZ_N_GROUPS][BZ_MAX_ALPHA_SIZE]; @@ -635,8 +636,6 @@ void sendMTFValues ( EState* s ) if (s->verbosity >= 3) VPrintf1( "codes %d\n", s->numZ-nBytes ); - else /* squash compiler 'used but not set' warning */ - nBytes = nBytes; } |