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 f3f5e3f4..599f35f1 100644
--- a/hash.c
+++ b/hash.c
@@ -269,7 +269,7 @@ ucnum equal_hash(val obj, int *count, ucnum seed)
return hash_buf(obj->b.data, c_unum(obj->b.len), seed, count);
case TNOD:
return equal_hash(obj->tn.left, count, (seed + TNOD))
- + equal_hash(obj->tn.right, count, seed + (TNOD << 8));
+ + equal_hash(obj->tn.right, count, seed + (TNOD << 8))
+ equal_hash(obj->tn.key, count, seed + (TNOD << 16));
}