diff options
author | takacsd <takacsd@gmail.com> | 2012-11-30 19:43:50 +0100 |
---|---|---|
committer | Mark Adler <madler@alumni.caltech.edu> | 2013-02-23 23:32:30 -0800 |
commit | 63ba7582b80eb81b126c2931e485481c35596aab (patch) | |
tree | 4de1e956fced5945dee8458338627a96bf747ed3 /contrib/minizip/zip.c | |
parent | 00dfee0b2e235bcdb5321dd3bde199ee716a2f64 (diff) | |
download | zlib-63ba7582b80eb81b126c2931e485481c35596aab.tar.gz zlib-63ba7582b80eb81b126c2931e485481c35596aab.tar.bz2 zlib-63ba7582b80eb81b126c2931e485481c35596aab.zip |
Fix types in contrib/minizip to match result of get_crc_table().
Diffstat (limited to '')
-rw-r--r-- | contrib/minizip/zip.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/minizip/zip.c b/contrib/minizip/zip.c index 147934c..ea54853 100644 --- a/contrib/minizip/zip.c +++ b/contrib/minizip/zip.c | |||
@@ -157,7 +157,7 @@ typedef struct | |||
157 | ZPOS64_T totalUncompressedData; | 157 | ZPOS64_T totalUncompressedData; |
158 | #ifndef NOCRYPT | 158 | #ifndef NOCRYPT |
159 | unsigned long keys[3]; /* keys defining the pseudo-random sequence */ | 159 | unsigned long keys[3]; /* keys defining the pseudo-random sequence */ |
160 | const unsigned long* pcrc_32_tab; | 160 | const z_crc_t* pcrc_32_tab; |
161 | int crypt_header_size; | 161 | int crypt_header_size; |
162 | #endif | 162 | #endif |
163 | } curfile64_info; | 163 | } curfile64_info; |