diff --git a/ww/buffer_pool.c b/ww/buffer_pool.c index 19b834f0..ba9d8f93 100644 --- a/ww/buffer_pool.c +++ b/ww/buffer_pool.c @@ -129,7 +129,7 @@ buffer_pool_t *createBufferPool() buffer_pool_t *createSmallBufferPool() { - const unsigned long count_max = 2 * (16 * 4); + const unsigned long count_max = 2 * (16 * 2); const unsigned long container_len = count_max * sizeof(shift_buffer_t *); buffer_pool_t * pool = malloc(sizeof(buffer_pool_t) + container_len); #ifdef DEBUG