summaryrefslogtreecommitdiffstats
path: root/hash.c
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2009-11-24 11:03:17 -0800
committerKaz Kylheku <kaz@kylheku.com>2009-11-24 11:03:17 -0800
commit9e929c272579ad369b52c4a14f21895017e69176 (patch)
tree79aec79f90a0c160ab5319b74143f79f00af252e /hash.c
parent152aefb0086b3482acae19ab78545a4a29ae7c20 (diff)
downloadtxr-9e929c272579ad369b52c4a14f21895017e69176.tar.gz
txr-9e929c272579ad369b52c4a14f21895017e69176.tar.bz2
txr-9e929c272579ad369b52c4a14f21895017e69176.zip
Renaming global variables that denote symbols, such that they
have a _s suffix.
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);