aboutsummaryrefslogtreecommitdiff
path: root/inc/hash.h
diff options
context:
space:
mode:
authorMarvin Borner2023-05-26 22:20:00 +0200
committerMarvin Borner2023-05-26 22:20:00 +0200
commite5c2e8978f3572b00585b53c1f3bf8ee75586439 (patch)
treed56d131f8a06bf97f4b39e32eb756587673e67ec /inc/hash.h
parentd239d5da765ddc389195d7121d517e16c674f50e (diff)
Switched to xxHash from murmur3
Diffstat (limited to 'inc/hash.h')
-rw-r--r--inc/hash.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/inc/hash.h b/inc/hash.h
index 35da312..7898180 100644
--- a/inc/hash.h
+++ b/inc/hash.h
@@ -9,6 +9,6 @@
typedef uint64_t hash_t;
-hash_t hash(const void *key, int len, uint64_t seed);
+hash_t hash(const void *data, size_t len, uint64_t seed);
#endif