aboutsummaryrefslogtreecommitdiff
path: root/archival/bz/huffman.c
diff options
context:
space:
mode:
Diffstat (limited to 'archival/bz/huffman.c')
-rw-r--r--archival/bz/huffman.c4
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.
68 68
69/*---------------------------------------------------*/ 69/*---------------------------------------------------*/
70static 70static
71void BZ2_hbMakeCodeLengths(UChar *len, 71void BZ2_hbMakeCodeLengths(uint8_t *len,
72 int32_t *freq, 72 int32_t *freq,
73 int32_t alphaSize, 73 int32_t alphaSize,
74 int32_t maxLen) 74 int32_t maxLen)
@@ -163,7 +163,7 @@ void BZ2_hbMakeCodeLengths(UChar *len,
163/*---------------------------------------------------*/ 163/*---------------------------------------------------*/
164static 164static
165void BZ2_hbAssignCodes(int32_t *code, 165void BZ2_hbAssignCodes(int32_t *code,
166 UChar *length, 166 uint8_t *length,
167 int32_t minLen, 167 int32_t minLen,
168 int32_t maxLen, 168 int32_t maxLen,
169 int32_t alphaSize) 169 int32_t alphaSize)