diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2019-08-28 11:45:42 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2019-08-28 11:45:42 (GMT) |
commit | b7f809ade5521067cf0d90daa4b24ae48fd7e525 (patch) | |
tree | 0454687fff6f9605ebe2b160834f66b1acf33fd3 /compat | |
parent | fa1cc2cd3f640af44f4f766c1fdcbf4822b8053e (diff) | |
parent | da423a1424e34834a64c209244ef64ca7c275f7d (diff) | |
download | tcl-b7f809ade5521067cf0d90daa4b24ae48fd7e525.zip tcl-b7f809ade5521067cf0d90daa4b24ae48fd7e525.tar.gz tcl-b7f809ade5521067cf0d90daa4b24ae48fd7e525.tar.bz2 |
Merge 8.7
Diffstat (limited to 'compat')
-rw-r--r-- | compat/zlib/contrib/minizip/crypt.h | 2 |
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; |