From 5f92c38f0efddf575466381a2ab47046255b29f1 Mon Sep 17 00:00:00 2001 From: Adam Jackson Date: Sat, 9 Apr 2005 18:35:57 +0000 Subject: Bug #2945: Fix math error that left half the hash buckets empty. --- src/mesa/main/hash.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/mesa/main/hash.c') diff --git a/src/mesa/main/hash.c b/src/mesa/main/hash.c index 01a8bd5e7e..0861af1055 100644 --- a/src/mesa/main/hash.c +++ b/src/mesa/main/hash.c @@ -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. -- cgit v1.2.3