summaryrefslogtreecommitdiffstats
path: root/hash.c
diff options
context:
space:
mode:
Diffstat (limited to 'hash.c')
-rw-r--r--hash.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/hash.c b/hash.c
index 965dd4d3..ae83dc7a 100644
--- a/hash.c
+++ b/hash.c
@@ -229,7 +229,7 @@ val make_hash(val weak_keys, val weak_vals)
struct hash *h = (struct hash *) chk_malloc(sizeof *h);
val mod = num(256);
val table = vector(mod);
- val hash = cobj((void *) h, hash_t, &hash_ops);
+ val hash = cobj((void *) h, hash_s, &hash_ops);
vec_set_fill(table, mod);