diff options
author | Rob Landley <rob@landley.net> | 2007-02-03 14:10:00 -0500 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2007-02-03 14:10:00 -0500 |
commit | fd1c5ba0cbbd31c4713d9283c4fa5c3265ad2296 (patch) | |
tree | 48f65558e2c9d76fa397e066c14a5642accee992 /lib/bunzip.c | |
parent | 5a60e26fe8de2648689ff8c5659085b99f5891a0 (diff) | |
download | toybox-fd1c5ba0cbbd31c4713d9283c4fa5c3265ad2296.tar.gz |
Teach build to build only the toys/*.c selected in .config, and teach
CFG_TOYSH_DEBUG to shut up the spurious "gcc can't tell that this is never
actually used uninitialized because gcc is stupid" warnings.
Diffstat (limited to 'lib/bunzip.c')
-rw-r--r-- | lib/bunzip.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/bunzip.c b/lib/bunzip.c index 049dc02e..b7996983 100644 --- a/lib/bunzip.c +++ b/lib/bunzip.c @@ -111,9 +111,9 @@ static unsigned int get_bits(bunzip_data *bd, char bits_wanted) // Decompress a block of text to intermediate buffer int read_bunzip_data(bunzip_data *bd) { - struct group_data *hufGroup; + struct group_data *hufGroup GCC_BUG; unsigned origPtr; - int dbufCount, nextSym, dbufSize, groupCount, *base, *limit, + int dbufCount, nextSym, dbufSize, groupCount, *base GCC_BUG, *limit GCC_BUG, selector, i, j, k, t, runPos, symCount, symTotal, nSelectors, byteCount[256]; char uc, mtfSymbol[256], symToByte[256], *selectors; |