From 679515b83ad3aff93c0e759783e5a8e567d5dc15 Mon Sep 17 00:00:00 2001 From: Adam Jackson Date: Sat, 9 Apr 2005 18:38:27 +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(-) diff --git a/src/mesa/main/hash.c b/src/mesa/main/hash.c index 78be122aab..230f86f30b 100644 --- a/src/mesa/main/hash.c +++ b/src/mesa/main/hash.c @@ -42,7 +42,7 @@ #include "context.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