diff options
author | Marvin Borner | 2023-05-21 23:47:52 +0200 |
---|---|---|
committer | Marvin Borner | 2023-05-21 23:47:52 +0200 |
commit | cbb215c7f8f78f0a54c22fa90569733bef05907e (patch) | |
tree | e9bca123253ed9d0c244f5b2b0d6d2d1c7c4d7ea /inc/hash.h | |
parent | d1443cb239ce306fcca9bfc67c4b162a0da9b917 (diff) |
It WAS a hash collision after all!
I don't know what I tested before lol but okay great!
Diffstat (limited to 'inc/hash.h')
-rw-r--r-- | inc/hash.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -7,8 +7,8 @@ #include <stdint.h> #include <stddef.h> -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 |