diff options
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. | |||
68 | 68 | ||
69 | /*---------------------------------------------------*/ | 69 | /*---------------------------------------------------*/ |
70 | static | 70 | static |
71 | void BZ2_hbMakeCodeLengths(UChar *len, | 71 | void 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 | /*---------------------------------------------------*/ |
164 | static | 164 | static |
165 | void BZ2_hbAssignCodes(int32_t *code, | 165 | void 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) |