Fix types in contrib/minizip to match result of get_crc_table().

This commit is contained in:
takacsd
2012-11-30 19:43:50 +01:00
committed by Mark Adler
parent 00dfee0b2e
commit 63ba7582b8
3 changed files with 6 additions and 6 deletions

View File

@@ -157,7 +157,7 @@ typedef struct
ZPOS64_T totalUncompressedData;
#ifndef NOCRYPT
unsigned long keys[3]; /* keys defining the pseudo-random sequence */
const unsigned long* pcrc_32_tab;
const z_crc_t* pcrc_32_tab;
int crypt_header_size;
#endif
} curfile64_info;