summaryrefslogtreecommitdiffstats
path: root/compat
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2019-09-30 14:43:32 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2019-09-30 14:43:32 (GMT)
commitbdae5b1c044b3a736b43128db05842e6a4a10bf5 (patch)
treecb0c231e14b15354bb1410c3974657c48a5c9af3 /compat
parent52935004bb84e553a8eb3de8af88ec0d8938ca5a (diff)
parent6e4833d8fd1cf6c4a266b68af0c11c77d4a7d790 (diff)
downloadtcl-bdae5b1c044b3a736b43128db05842e6a4a10bf5.zip
tcl-bdae5b1c044b3a736b43128db05842e6a4a10bf5.tar.gz
tcl-bdae5b1c044b3a736b43128db05842e6a4a10bf5.tar.bz2
Merge trunk. Finish implementation.
Diffstat (limited to 'compat')
-rw-r--r--compat/zlib/contrib/minizip/crypt.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/compat/zlib/contrib/minizip/crypt.h b/compat/zlib/contrib/minizip/crypt.h
index c422c26..2c3044b 100644
--- a/compat/zlib/contrib/minizip/crypt.h
+++ b/compat/zlib/contrib/minizip/crypt.h
@@ -57,7 +57,7 @@ static int update_keys(unsigned long* pkeys,const z_crc_t* pcrc_32_tab,int c)
(*(pkeys+1)) += (*(pkeys+0)) & 0xff;
(*(pkeys+1)) = (*(pkeys+1)) * 134775813L + 1;
{
- register int keyshift = (int)((*(pkeys+1)) >> 24);
+ int keyshift = (int)((*(pkeys+1)) >> 24);
(*(pkeys+2)) = CRC32((*(pkeys+2)), keyshift);
}
return c;