aboutsummaryrefslogtreecommitdiff
path: root/contrib
diff options
context:
space:
mode:
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 f4b93b78..8bde464b 100644
--- a/contrib/minizip/crypt.h
+++ b/contrib/minizip/crypt.h
@@ -50,7 +50,7 @@ static int update_keys(unsigned long* pkeys, const z_crc_t* pcrc_32_tab, int c)
50 (*(pkeys+1)) += (*(pkeys+0)) & 0xff; 50 (*(pkeys+1)) += (*(pkeys+0)) & 0xff;
51 (*(pkeys+1)) = (*(pkeys+1)) * 134775813L + 1; 51 (*(pkeys+1)) = (*(pkeys+1)) * 134775813L + 1;
52 { 52 {
53 register int keyshift = (int)((*(pkeys+1)) >> 24); 53 int keyshift = (int)((*(pkeys+1)) >> 24);
54 (*(pkeys+2)) = CRC32((*(pkeys+2)), keyshift); 54 (*(pkeys+2)) = CRC32((*(pkeys+2)), keyshift);
55 } 55 }
56 return c; 56 return c;