From 35e13e4c9637f5bf7bef6039c8c813207780a174 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Frings-F=C3=BCrst?= Date: Mon, 20 Nov 2023 20:10:50 +0100 Subject: New upstream version 6.9.9 --- src/st.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/st.h') diff --git a/src/st.h b/src/st.h index 7961c06..5efee8b 100644 --- a/src/st.h +++ b/src/st.h @@ -16,8 +16,8 @@ typedef unsigned long long st_data_t; typedef struct st_table st_table; struct st_hash_type { - int (*compare)(); - int (*hash)(); + int (*compare)(st_data_t, st_data_t); + int (*hash)(st_data_t); }; struct st_table { -- cgit v1.2.3