bug fix
[IRC.git] / Robust / src / Runtime / MGCHash.h
index 6c0459d53b3534ff2acec8be035c738f8752f78d..03844ebcfd7e4e03bfedfaa4f6235e51d9457ef5 100755 (executable)
@@ -25,6 +25,7 @@ typedef struct mgchashlistnode {
   void * val; //this can be cast to another type or used to point to a
               //larger structure
   struct mgchashlistnode *next;
+  //struct mgchashlistnode *lnext;
 } mgchashlistnode_t;
 
 #define NUMMGCLIST 250
@@ -36,7 +37,7 @@ typedef struct mgclist {
 
 typedef struct mgchashtable {
   mgchashlistnode_t * table;       // points to beginning of hash table
-  mgchashlistnode_t * list;
+  //mgchashlistnode_t * list;
   mgcliststruct_t * structs;
   unsigned int size;
   unsigned int mask;