Release calc version 2.11.0t8.6

This commit is contained in:
Landon Curt Noll
1999-10-28 12:37:17 -07:00
parent a7e363da8b
commit e6e2556893
7 changed files with 219 additions and 59 deletions

4
seed.c
View File

@@ -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 */