Changeset 30c0826 in mainline
- Timestamp:
- 2012-08-08T16:50:33Z (12 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 85d31de9
- Parents:
- da68871a
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/src/adt/cht.c
rda68871a r30c0826 1872 1872 { 1873 1873 /* Mimick calc_node_hash. */ 1874 return hash_mix(h->op->key_hash(key)) & ~ 1U;1874 return hash_mix(h->op->key_hash(key)) & ~(size_t)1; 1875 1875 } 1876 1876 … … 1891 1891 * to be the greatest possible. 1892 1892 */ 1893 return hash_mix(h->op->hash(item)) & ~ 1U;1893 return hash_mix(h->op->hash(item)) & ~(size_t)1; 1894 1894 } 1895 1895
Note:
See TracChangeset
for help on using the changeset viewer.