]> git.ozlabs.org Git - ccan/blobdiff - ccan/tdb2/test/run-04-basichash.c
tdb2: tdb_mkdata
[ccan] / ccan / tdb2 / test / run-04-basichash.c
index b3a5d1c5bd0b8d2b1d1ffe6d03cee05e429ec110..0f962f82b63bfcb59a2f5b5998bf25b6dccd77af 100644 (file)
@@ -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);
 }