diff options
author | Mark Adler <fork@madler.net> | 2022-10-10 01:01:38 -0700 |
---|---|---|
committer | Mark Adler <fork@madler.net> | 2022-10-10 01:01:38 -0700 |
commit | 2bb4961990e96ecab1ac6ae3566be42a5278b1a6 (patch) | |
tree | a5803390a33ab7831e5dfc594a5fda37e378cc5c /contrib | |
parent | e61ff990c0a97aa17e76e7e388e6fc525da5300b (diff) | |
download | zlib-2bb4961990e96ecab1ac6ae3566be42a5278b1a6.tar.gz zlib-2bb4961990e96ecab1ac6ae3566be42a5278b1a6.tar.bz2 zlib-2bb4961990e96ecab1ac6ae3566be42a5278b1a6.zip |
Avoid C89 warning in contrib/minizip/crypt.h.
Diffstat (limited to 'contrib')
-rw-r--r-- | contrib/minizip/crypt.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/minizip/crypt.h b/contrib/minizip/crypt.h index 9da1537..1cc41f1 100644 --- a/contrib/minizip/crypt.h +++ b/contrib/minizip/crypt.h | |||
@@ -85,7 +85,7 @@ static void init_keys(const char* passwd,unsigned long* pkeys,const z_crc_t* pcr | |||
85 | #define RAND_HEAD_LEN 12 | 85 | #define RAND_HEAD_LEN 12 |
86 | /* "last resort" source for second part of crypt seed pattern */ | 86 | /* "last resort" source for second part of crypt seed pattern */ |
87 | # ifndef ZCR_SEED2 | 87 | # ifndef ZCR_SEED2 |
88 | # define ZCR_SEED2 3141592654L /* use PI as default pattern */ | 88 | # define ZCR_SEED2 3141592654UL /* use PI as default pattern */ |
89 | # endif | 89 | # endif |
90 | 90 | ||
91 | static unsigned crypthead(const char* passwd, /* password string */ | 91 | static unsigned crypthead(const char* passwd, /* password string */ |