From: Bernhard Reutner-Fischer Date: Sun, 2 Apr 2006 21:23:40 +0000 (-0000) Subject: - janitorial: huft_build is never used outside of decompress_unzip.c and has no X-Git-Tag: 1_2_0~597 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=7ab5f4d03d4541b96ccd42957eb74ff9f7728ebf;p=oweals%2Fbusybox.git - 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. --- 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)