diff options
author | Denis Vlasenko | 2007-10-17 10:14:11 +0000 |
---|---|---|
committer | Denis Vlasenko | 2007-10-17 10:14:11 +0000 |
commit | 31acd1ba0a091577983ec02b336fe6388e80a942 (patch) | |
tree | c7bab1849f82338703cbfc9f63ff8d70054684d3 /archival/bz | |
parent | 16e74b74648a8f013065fcc4356164c78d7f22d5 (diff) | |
download | busybox-31acd1ba0a091577983ec02b336fe6388e80a942.zip busybox-31acd1ba0a091577983ec02b336fe6388e80a942.tar.gz |
bzip2: more of code shrink
compressStream 503 473 -30
BZ2_bzCompress 78 - -78
------------------------------------------------------------------------------
(add/remove: 0/1 grow/shrink: 0/1 up/down: 0/-108) Total: -108 bytes
text data bss dec hex filename
676300 2538 12104 690942 a8afe busybox_old
676192 2538 12104 690834 a8a92 busybox_unstripped
Diffstat (limited to 'archival/bz')
-rw-r--r-- | archival/bz/bzlib.c | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/archival/bz/bzlib.c b/archival/bz/bzlib.c index cdb596c..9957c2f 100644 --- a/archival/bz/bzlib.c +++ b/archival/bz/bzlib.c @@ -76,11 +76,9 @@ void init_RL(EState* s) static -Bool isempty_RL(EState* s) +int isempty_RL(EState* s) { - if (s->state_in_ch < 256 && s->state_in_len > 0) - return False; - return True; + return (s->state_in_ch >= 256 || s->state_in_len <= 0); } @@ -333,7 +331,7 @@ int BZ2_bzCompress(bz_stream *strm, int action) } #ifdef FLUSH_IS_UNUSED -case_BZ_M_FLUSHING: + case_BZ_M_FLUSHING: case BZ_M_FLUSHING: /*if (s->avail_in_expect != s->strm->avail_in) return BZ_SEQUENCE_ERROR;*/ |