From b902508ddb759b635a148dde59297e3918d096c4 Mon Sep 17 00:00:00 2001 From: Ali Gholami Rudi Date: Sun, 20 Jun 2010 19:24:15 +0430 Subject: [PATCH] tab: let table size be HASHITEMS --- tab.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tab.h b/tab.h index 06985fd..633888a 100644 --- a/tab.h +++ b/tab.h @@ -3,7 +3,7 @@ #define container(ptr, type, field) ((type *) ((ptr) - offsetof(type, field))) struct tab { - int head[TABITEMS << 2]; + int head[TABITEMS]; char *data[TABITEMS]; int next[TABITEMS]; int n; -- 2.11.4.GIT