aboutsummaryrefslogtreecommitdiff
path: root/contrib
diff options
context:
space:
mode:
authorMark Adler <fork@madler.net>2022-10-10 01:01:38 -0700
committerMark Adler <fork@madler.net>2022-10-10 01:01:38 -0700
commit2bb4961990e96ecab1ac6ae3566be42a5278b1a6 (patch)
treea5803390a33ab7831e5dfc594a5fda37e378cc5c /contrib
parente61ff990c0a97aa17e76e7e388e6fc525da5300b (diff)
downloadzlib-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.h2
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
91static unsigned crypthead(const char* passwd, /* password string */ 91static unsigned crypthead(const char* passwd, /* password string */