diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2009-11-24 11:03:17 -0800 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2009-11-24 11:03:17 -0800 |
commit | 9e929c272579ad369b52c4a14f21895017e69176 (patch) | |
tree | 79aec79f90a0c160ab5319b74143f79f00af252e /hash.c | |
parent | 152aefb0086b3482acae19ab78545a4a29ae7c20 (diff) | |
download | txr-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.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); |