From: Adam Jackson Date: Sat, 9 Apr 2005 18:35:57 +0000 (+0000) Subject: Bug #2945: Fix math error that left half the hash buckets empty. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=5f92c38f0efddf575466381a2ab47046255b29f1;p=mesa.git Bug #2945: Fix math error that left half the hash buckets empty. --- diff --git a/src/mesa/main/hash.c b/src/mesa/main/hash.c index 01a8bd5e7ec..0861af1055d 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.