From 81a6f7f1398a3c973b14ae31be557e73f9aa6af2 Mon Sep 17 00:00:00 2001 From: Antonio SJ Musumeci Date: Sat, 11 Jan 2025 19:24:54 -0600 Subject: [PATCH] hashset.hpp --- src/hashset.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/hashset.hpp b/src/hashset.hpp index 1e25a44e..16584ebe 100644 --- a/src/hashset.hpp +++ b/src/hashset.hpp @@ -29,7 +29,7 @@ vt_hash_const_string(const char *key_) { uint64_t hash = 0xcbf29ce484222325ull; - while( *key ) + while( *key_ ) hash = ( (unsigned char)*key++ ^ hash ) * 0x100000001b3ull; return hash;