summaryrefslogtreecommitdiffstats
path: root/hash.c
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2009-12-04 12:35:18 -0800
committerKaz Kylheku <kaz@kylheku.com>2009-12-04 12:35:18 -0800
commitbdfe648ad88513857c3f9ef670ac0cae47bd606c (patch)
tree2b77d74b4827a8ea81259f1a339af86342c7daef /hash.c
parent208f8a44f899460c182da8644a7cd982d18aade9 (diff)
downloadtxr-bdfe648ad88513857c3f9ef670ac0cae47bd606c.tar.gz
txr-bdfe648ad88513857c3f9ef670ac0cae47bd606c.tar.bz2
txr-bdfe648ad88513857c3f9ef670ac0cae47bd606c.zip
Eliminate the void * disease. Generic pointers are of mem_t *
from now on, which is compatible with unsigned char *. No implicit conversion to or from this type, in C or C++.
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 66666c81..f0c0d8d0 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_s, &hash_ops);
+ val hash = cobj((mem_t *) h, hash_s, &hash_ops);
vec_set_fill(table, mod);