From a20ba913e7c1235afe5d351552fc6391739d189a Mon Sep 17 00:00:00 2001 From: ganchuantao1 Date: Sat, 8 Feb 2025 16:38:43 +0800 Subject: [PATCH] =?UTF-8?q?=20=20=20=20=E4=BF=AE=E5=A4=8Dlibbpf=20?= =?UTF-8?q?=E6=97=A0=E7=AC=A6=E5=8F=B7=E6=95=B0=E7=9A=84=E9=97=AE=E9=A2=98?= =?UTF-8?q?=EF=BC=8C=E6=8C=91=E5=8D=955.0.3=20=20=20=20=20Signed-off-by:ga?= =?UTF-8?q?nchuantao1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: ganchuantao1 --- src/btf.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/btf.c b/src/btf.c index f77b637..6e44f07 100644 --- a/src/btf.c +++ b/src/btf.c @@ -3402,7 +3402,7 @@ struct btf_dedup { struct strset *strs_set; }; -static long hash_combine(long h, long value) +static unsigned long hash_combine(unsigned long h, unsigned long value) { return h * 31 + value; } -- Gitee