summaryrefslogtreecommitdiffstats
path: root/lib.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib.c')
-rw-r--r--lib.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib.c b/lib.c
index 42facb48..2376177f 100644
--- a/lib.c
+++ b/lib.c
@@ -7851,10 +7851,10 @@ val cobj_equal_handle_op(val left, val right)
return (left->co.handle == right->co.handle) ? t : nil;
}
-cnum cobj_handle_hash_op(val obj, int *count)
+cnum cobj_handle_hash_op(val obj, int *count, ucnum seed)
{
mem_t *handle = obj->co.handle;
- return cobj_eq_hash_op(coerce(val, handle), count);
+ return cobj_eq_hash_op(coerce(val, handle), count, seed);
}
static struct cobj_ops cptr_ops = {