mirror of
https://github.com/lcn2/calc.git
synced 2025-08-16 01:03:29 +03:00
Release calc version 2.11.0t8.6
This commit is contained in:
4
seed.c
4
seed.c
@@ -230,8 +230,8 @@ hash_buf(char *buf, unsigned len)
|
||||
|
||||
/* convert to hash64 */
|
||||
/* hval.w32[1] = 0xffff&(val[3]<<16)+val[2]; */
|
||||
hval.w32[1] = val[3]<<16 + val[2];
|
||||
hval.w32[0] = val[1]<<16 + val[0];
|
||||
hval.w32[1] = (val[3]<<16) + val[2];
|
||||
hval.w32[0] = (val[1]<<16) + val[0];
|
||||
|
||||
#endif /* HAVE_B64 */
|
||||
|
||||
|
Reference in New Issue
Block a user