From 5be69e64cfd17b20c0c7fef3b3e2983cf69e8645 Mon Sep 17 00:00:00 2001 From: Fabrice Date: Tue, 10 Feb 2026 10:21:18 +0100 Subject: fix types and use dep files --- src/hashm.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/hashm.h') diff --git a/src/hashm.h b/src/hashm.h index fb83391..e1ed720 100644 --- a/src/hashm.h +++ b/src/hashm.h @@ -14,7 +14,7 @@ template struct hashentry_s { }; template -inline i32 wayc_hashentry_hash(const void *item, uint64_t seed0, +inline u64 wayc_hashentry_hash(const void *item, uint64_t seed0, uint64_t seed1) { wayc_notnull(item); @@ -23,7 +23,7 @@ inline i32 wayc_hashentry_hash(const void *item, uint64_t seed0, } template -inline bool wayc_hashentry_compare(const void *a, const void *b, void *udata) { +inline i32 wayc_hashentry_compare(const void *a, const void *b, void *udata) { (void)udata; wayc_notnull(a); -- cgit v1.2.3