X-Git-Url: http://git.ozlabs.org/?a=blobdiff_plain;f=ccan%2Ftdb2%2Ftest%2Frun-04-basichash.c;fp=ccan%2Ftdb2%2Ftest%2Frun-04-basichash.c;h=0f962f82b63bfcb59a2f5b5998bf25b6dccd77af;hb=f367a1dc8573db0a1f6f49fcda474eb51c192241;hp=b3a5d1c5bd0b8d2b1d1ffe6d03cee05e429ec110;hpb=45e9956d665dc8819eb183ae239581410dcecdb3;p=ccan diff --git a/ccan/tdb2/test/run-04-basichash.c b/ccan/tdb2/test/run-04-basichash.c index b3a5d1c5..0f962f82 100644 --- a/ccan/tdb2/test/run-04-basichash.c +++ b/ccan/tdb2/test/run-04-basichash.c @@ -12,7 +12,7 @@ /* We rig the hash so adjacent-numbered records always clash. */ static uint64_t clash(const void *key, size_t len, uint64_t seed, void *priv) { - return ((uint64_t)*(unsigned int *)key) + return ((uint64_t)*(const unsigned int *)key) << (64 - TDB_TOPLEVEL_HASH_BITS - 1); }