aboutsummaryrefslogtreecommitdiff
path: root/builtins/table.c
diff options
context:
space:
mode:
authorBruce Hill <bruce@bruce-hill.com>2024-04-14 21:58:49 -0400
committerBruce Hill <bruce@bruce-hill.com>2024-04-14 21:58:49 -0400
commit4c5dc9443e818d020fcb95144a944c98e7d46055 (patch)
tree880757d71e6fd084e1cb0d6c92d7a4936bcbd90c /builtins/table.c
parentc8e2f0faad925d7d5bcc6ebcb7b0c306c9e663e5 (diff)
Rename SSS_HASH_VECTOR -> TOMO
Diffstat (limited to 'builtins/table.c')
-rw-r--r--builtins/table.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/builtins/table.c b/builtins/table.c
index 3a52d0c5..591acc96 100644
--- a/builtins/table.c
+++ b/builtins/table.c
@@ -500,7 +500,7 @@ public uint32_t Table$hash(const table_t *t, const TypeInfo *type)
default_hash,
};
uint32_t hash;
- halfsiphash(&components, sizeof(components), SSS_HASH_VECTOR, (uint8_t*)&hash, sizeof(hash));
+ halfsiphash(&components, sizeof(components), TOMO_HASH_VECTOR, (uint8_t*)&hash, sizeof(hash));
return hash;
}