diff options
Diffstat (limited to 'hash.c')
-rw-r--r-- | hash.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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); |