diff options
author | aldot <aldot@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2006-04-02 21:23:40 +0000 |
---|---|---|
committer | aldot <aldot@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2006-04-02 21:23:40 +0000 |
commit | f8ed6691b05f74705916f35c1094f5a83cb1b610 (patch) | |
tree | a4a2b80e0fea048cb3e476e01058258792c40e35 /archival | |
parent | d4d2918aea2c727b7c32201f3454f67a6cf7eec3 (diff) | |
download | busybox-w32-f8ed6691b05f74705916f35c1094f5a83cb1b610.tar.gz busybox-w32-f8ed6691b05f74705916f35c1094f5a83cb1b610.tar.bz2 busybox-w32-f8ed6691b05f74705916f35c1094f5a83cb1b610.zip |
- 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.
git-svn-id: svn://busybox.net/trunk/busybox@14732 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'archival')
-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) | |||
232 | * t: result: starting table | 232 | * t: result: starting table |
233 | * m: maximum lookup bits, returns actual | 233 | * m: maximum lookup bits, returns actual |
234 | */ | 234 | */ |
235 | static | ||
235 | int huft_build(unsigned int *b, const unsigned int n, | 236 | int huft_build(unsigned int *b, const unsigned int n, |
236 | const unsigned int s, const unsigned short *d, | 237 | const unsigned int s, const unsigned short *d, |
237 | const unsigned char *e, huft_t ** t, unsigned int *m) | 238 | const unsigned char *e, huft_t ** t, unsigned int *m) |