diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2007-10-14 00:43:01 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2007-10-14 00:43:01 +0000 |
commit | ef3aabe906a351f0bdf97199b4f38a2c6b54eaa5 (patch) | |
tree | 7ce8c73be864396eb656c2ef59ef797824a07942 /archival/bz/huffman.c | |
parent | 77f1ec1b9bf100e6c10aa0856c7156e321511785 (diff) |
bzip2: size reduction, to just below 9k.
Diffstat (limited to 'archival/bz/huffman.c')
-rw-r--r-- | archival/bz/huffman.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/archival/bz/huffman.c b/archival/bz/huffman.c index d01af11c2..89e54604b 100644 --- a/archival/bz/huffman.c +++ b/archival/bz/huffman.c @@ -68,7 +68,7 @@ in the file LICENSE. /*---------------------------------------------------*/ static -void BZ2_hbMakeCodeLengths(UChar *len, +void BZ2_hbMakeCodeLengths(uint8_t *len, int32_t *freq, int32_t alphaSize, int32_t maxLen) @@ -163,7 +163,7 @@ void BZ2_hbMakeCodeLengths(UChar *len, /*---------------------------------------------------*/ static void BZ2_hbAssignCodes(int32_t *code, - UChar *length, + uint8_t *length, int32_t minLen, int32_t maxLen, int32_t alphaSize) |