diff options
author | Denys Vlasenko | 2011-09-10 13:25:57 +0200 |
---|---|---|
committer | Denys Vlasenko | 2011-09-10 13:25:57 +0200 |
commit | 522041ee7b10ac544b90c6a8d1d4fbf8a5d39c6d (patch) | |
tree | 412854af83f841f564faf842ca6cefc12a016236 /archival/libarchive/bz/huffman.c | |
parent | 202a1b9284fd763e81340050d228103aef999675 (diff) | |
download | busybox-522041ee7b10ac544b90c6a8d1d4fbf8a5d39c6d.zip busybox-522041ee7b10ac544b90c6a8d1d4fbf8a5d39c6d.tar.gz |
regularize options which control size/speed trade
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'archival/libarchive/bz/huffman.c')
-rw-r--r-- | archival/libarchive/bz/huffman.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/archival/libarchive/bz/huffman.c b/archival/libarchive/bz/huffman.c index 676b1af..bbec11a 100644 --- a/archival/libarchive/bz/huffman.c +++ b/archival/libarchive/bz/huffman.c @@ -48,7 +48,7 @@ in the file LICENSE. /* 90 bytes, 0.3% of overall compress speed */ -#if CONFIG_BZIP2_FEATURE_SPEED >= 1 +#if CONFIG_BZIP2_FAST >= 1 /* macro works better than inline (gcc 4.2.1) */ #define DOWNHEAP1(heap, weight, Heap) \ |