diff options
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2006-04-02 21:23:40 +0000 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2006-04-02 21:23:40 +0000 |
commit | 7ab5f4d03d4541b96ccd42957eb74ff9f7728ebf (patch) | |
tree | a4a2b80e0fea048cb3e476e01058258792c40e35 | |
parent | 9a67ca309c3487c8d3192fa518d5795e570646f5 (diff) |
- janitorial: huft_build is never used outside of decompress_unzip.c and has no
prototype (which suggests that it's of no general use) so make it static for now.
-rw-r--r-- | archival/libunarchive/decompress_unzip.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/archival/libunarchive/decompress_unzip.c b/archival/libunarchive/decompress_unzip.c index 7c43bed12..3215697aa 100644 --- a/archival/libunarchive/decompress_unzip.c +++ b/archival/libunarchive/decompress_unzip.c @@ -232,6 +232,7 @@ static int huft_free(huft_t * t) * t: result: starting table * m: maximum lookup bits, returns actual */ +static int huft_build(unsigned int *b, const unsigned int n, const unsigned int s, const unsigned short *d, const unsigned char *e, huft_t ** t, unsigned int *m) |