summaryrefslogtreecommitdiff
path: root/archival/gzip.c
diff options
context:
space:
mode:
Diffstat (limited to 'archival/gzip.c')
-rw-r--r--archival/gzip.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/archival/gzip.c b/archival/gzip.c
index 39391dfda..561f1088c 100644
--- a/archival/gzip.c
+++ b/archival/gzip.c
@@ -2079,7 +2079,7 @@ int gzip_main(int argc, char **argv)
2079 ALLOC(ush, G1.prev, 1L << BITS); 2079 ALLOC(ush, G1.prev, 1L << BITS);
2080 2080
2081 /* Initialise the CRC32 table */ 2081 /* Initialise the CRC32 table */
2082 G1.crc_32_tab = crc32_filltable(0); 2082 G1.crc_32_tab = crc32_filltable(NULL, 0);
2083 2083
2084 return bbunpack(argv, make_new_name_gzip, pack_gzip); 2084 return bbunpack(argv, make_new_name_gzip, pack_gzip);
2085} 2085}