diff options
Diffstat (limited to 'src/map.cpp')
| -rw-r--r-- | src/map.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map.cpp b/src/map.cpp index 51d0b9885..55eb4fbce 100644 --- a/src/map.cpp +++ b/src/map.cpp @@ -21,7 +21,7 @@ GB_STATIC_ASSERT(gb_size_of(u64) >= gb_size_of(void *)); gb_inline HashKey hashing_proc(void const *data, isize len) { HashKey h = {}; - h.key = gb_fnv64a(data, len); + h.key = fnv64a(data, len); return h; } |