From a1ea878956600a2ae6855c5627f560bfa33a22ff Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?H=C3=A5vard=20Pettersson?= Date: Sun, 28 Sep 2014 14:31:34 +0200 Subject: [PATCH] Changed message_queues hashtable size to 32. --- src/twc-profile.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/twc-profile.c b/src/twc-profile.c index b6c0d46..b9cd614 100644 --- a/src/twc-profile.c +++ b/src/twc-profile.c @@ -177,7 +177,7 @@ twc_profile_new(const char *name) profile->chats = twc_list_new(); profile->friend_requests = twc_list_new(); - profile->message_queues = weechat_hashtable_new(10, + profile->message_queues = weechat_hashtable_new(32, WEECHAT_HASHTABLE_INTEGER, WEECHAT_HASHTABLE_POINTER, NULL, NULL);