From b996799ccd0ad596592070ab5814dc1a6f951962 Mon Sep 17 00:00:00 2001 From: ka-weihe Date: Wed, 24 Mar 2021 17:06:35 +0100 Subject: [PATCH] wyhash: update to final_version_3 (part 2) (#9452) --- vlib/hash/wyhash.c.v | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/vlib/hash/wyhash.c.v b/vlib/hash/wyhash.c.v index 46f563659e..6758321acf 100644 --- a/vlib/hash/wyhash.c.v +++ b/vlib/hash/wyhash.c.v @@ -2,12 +2,12 @@ module hash //#flag -I @VROOT/thirdparty/wyhash //#include "wyhash.h" -fn C.wyhash(byteptr, u64, u64) u64 +fn C.wyhash(byteptr, u64, u64, &u64) u64 fn C.wyhash64(u64, u64) u64 [inline] pub fn wyhash_c(key byteptr, len u64, seed u64) u64 { - return C.wyhash(key, len, seed) + return C.wyhash(key, len, seed, C._wyp) } [inline]