Bug #2945: Fix math error that left half the hash buckets empty.
authorAdam Jackson <ajax@freedesktop.org>
Sat, 9 Apr 2005 18:35:57 +0000 (18:35 +0000)
committerAdam Jackson <ajax@freedesktop.org>
Sat, 9 Apr 2005 18:35:57 +0000 (18:35 +0000)
src/mesa/main/hash.c

index 01a8bd5e7ec4b40d72eea88e0c46a9cd455afb44..0861af1055d83c8a33c3c2f8fae52e583d25ac58 100644 (file)
@@ -41,7 +41,7 @@
 #include "hash.h"
 
 
-#define TABLE_SIZE 1023  /**< Size of lookup table/array */
+#define TABLE_SIZE 1024  /**< Size of lookup table/array */
 
 /**
  * An entry in the hash table.