]> mj.ucw.cz Git - libucw.git/commitdiff
SHIFT_BITS changed from 5 to 7 to fit the UCS-2 strings better
authorRobert Spalek <robert@ucw.cz>
Thu, 6 Jun 2002 15:18:53 +0000 (15:18 +0000)
committerRobert Spalek <robert@ucw.cz>
Thu, 6 Jun 2002 15:18:53 +0000 (15:18 +0000)
lib/hashfunc.c

index 2f951c6977ab5725e49281fa5135bfcb4d9d4592..af791908b07774595f60a8d738f5a7b3cac77415 100644 (file)
@@ -14,7 +14,7 @@
 
 /* The number of bits the hash in the function hash_*() is rotated by after
  * every pass.  It should be prime with the word size.  */
-#define        SHIFT_BITS      5
+#define        SHIFT_BITS      7
 
 /* A bit-mask which clears higher bytes than a given threshold.  */
 static uns mask_higher_bits[sizeof(uns)];