diff options
Diffstat (limited to 'builtins/pointer.c')
| -rw-r--r-- | builtins/pointer.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/builtins/pointer.c b/builtins/pointer.c index d71811b0..73bd41be 100644 --- a/builtins/pointer.c +++ b/builtins/pointer.c @@ -71,7 +71,7 @@ public bool Pointer$equal(const void *x, const void *y, const TypeInfo *type) { public uint32_t Pointer$hash(const void *x, const TypeInfo *type) { (void)type; uint32_t hash; - halfsiphash(x, sizeof(void*), TOMO_HASH_VECTOR, (uint8_t*)&hash, sizeof(hash)); + halfsiphash(x, sizeof(void*), TOMO_HASH_KEY, (uint8_t*)&hash, sizeof(hash)); return hash; } |
