From cbb215c7f8f78f0a54c22fa90569733bef05907e Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Sun, 21 May 2023 23:47:52 +0200 Subject: It WAS a hash collision after all! I don't know what I tested before lol but okay great! --- inc/hash.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'inc/hash.h') diff --git a/inc/hash.h b/inc/hash.h index 96a30dd..35da312 100644 --- a/inc/hash.h +++ b/inc/hash.h @@ -7,8 +7,8 @@ #include #include -typedef uint32_t hash_t; +typedef uint64_t hash_t; -hash_t hash(const uint8_t *key, size_t len, uint32_t seed); +hash_t hash(const void *key, int len, uint64_t seed); #endif -- cgit v1.2.3