From 3628e4389ef9455960c42466487385fc228566c3 Mon Sep 17 00:00:00 2001 From: Tyge Løvset Date: Tue, 5 Sep 2023 13:01:50 +0200 Subject: Renamed (half) internal function cfasthash() => cbytehash(). Fixed missing parameter in call of i_hash(). --- include/stc/cstr.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'include/stc/cstr.h') diff --git a/include/stc/cstr.h b/include/stc/cstr.h index f0974865..51519d82 100644 --- a/include/stc/cstr.h +++ b/include/stc/cstr.h @@ -450,7 +450,7 @@ bool cstr_valid_utf8(const cstr* self) STC_DEF uint64_t cstr_hash(const cstr *self) { csview sv = cstr_sv(self); - return cfasthash(sv.buf, sv.size); + return cbytehash(sv.buf, sv.size); } STC_DEF intptr_t cstr_find_sv(const cstr* self, csview search) { -- cgit v1.2.3