diff options
-rw-r--r-- | archival/libarchive/decompress_gunzip.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/archival/libarchive/decompress_gunzip.c b/archival/libarchive/decompress_gunzip.c index 530661e..0f8173d 100644 --- a/archival/libarchive/decompress_gunzip.c +++ b/archival/libarchive/decompress_gunzip.c @@ -39,7 +39,8 @@ typedef struct huft_t { unsigned char e; /* number of extra bits or operation */ unsigned char b; /* number of bits in this code or subcode */ union { - unsigned short n; /* literal, length base, or distance base */ + unsigned n; /* literal, length base, or distance base */ + /* ^^^^^ was "unsigned short", but that results in larger code */ struct huft_t *t; /* pointer to next level of table */ } v; } huft_t; |