reduced the default hash table size.

This commit is contained in:
Nikos Mavrogiannopoulos
2013-02-13 17:58:52 +01:00
parent 7ba28c0131
commit bbd9a588db

View File

@@ -37,7 +37,7 @@
#include <ccan/htable/htable.h>
#include <ccan/hash/hash.h>
#define MAX_COOKIES(n) ((n>0&&n>2048)?(2*n):4096)
#define MAX_COOKIES(n) ((n>0&&n>64)?(2*n):128)
/* receives allocated data and stores them.
*/