X-Git-Url: http://git.ozlabs.org/?a=blobdiff_plain;f=ccan%2Ftdb2%2Ftest%2Frun-04-basichash.c;h=0f962f82b63bfcb59a2f5b5998bf25b6dccd77af;hb=63e80faf9b42fbe73e25c804dd734b6179e42c24;hp=b3a5d1c5bd0b8d2b1d1ffe6d03cee05e429ec110;hpb=1ad66fedf81fdaf0f07a2b00d6787614c58a23ef;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); }