summaryrefslogtreecommitdiffstats
path: root/hash.c
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2009-11-15 12:20:27 -0800
committerKaz Kylheku <kaz@kylheku.com>2009-11-15 12:20:27 -0800
commit24130a3641ae179816ca5672bde12cc04be17813 (patch)
tree81916c7061137fbe4209e5aa5827bd8fb1630a4c /hash.c
parent19cdd145d345c4560ccc9d841025415e9696b64e (diff)
downloadtxr-24130a3641ae179816ca5672bde12cc04be17813.tar.gz
txr-24130a3641ae179816ca5672bde12cc04be17813.tar.bz2
txr-24130a3641ae179816ca5672bde12cc04be17813.zip
Version 021 preparation.txr-021
Bumped version numbers, and cleaned up trailing whitespace from some files.
Diffstat (limited to 'hash.c')
-rw-r--r--hash.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/hash.c b/hash.c
index 0b7c099d..f7b43f7f 100644
--- a/hash.c
+++ b/hash.c
@@ -60,7 +60,7 @@ static struct hash *reachable_weak_hashes;
/*
* This is is an adaptation of hashpjw, from Compilers: Principles, Techniques
* and Tools, Aho, Sethi, Ulman, 1988. P. 436. The register is wider by
- * a few bits, and we bring down five overflow bits instead of four.
+ * a few bits, and we bring down five overflow bits instead of four.
* We don't reduce the final result modulo a small prime, but leave it
* as it is; let the hashing routines do their own reduction.
*/
@@ -100,7 +100,7 @@ static long ll_hash(obj_t *obj)
long i, h = ll_hash(obj->v.vec[vec_fill]);
long len = c_num(fill);
- for (i = 0; i < len; i++)
+ for (i = 0; i < len; i++)
h = (h + ll_hash(obj->v.vec[i])) & NUM_MAX;
return h;