summaryrefslogtreecommitdiff
path: root/gslist.c
diff options
context:
space:
mode:
authorElliot Lee <sopwith@src.gnome.org>1999-02-09 19:25:38 +0000
committerElliot Lee <sopwith@src.gnome.org>1999-02-09 19:25:38 +0000
commit6c7994772297281730071874e609b62e68c211be (patch)
tree2b49659c90dd01469032bfec5e5488f5e257a664 /gslist.c
parentfa5d3b74b00bbe76f893b7a83b5a48084c015a18 (diff)
downloadglib-6c7994772297281730071874e609b62e68c211be.tar.gz
pools of 128 items instead of 1024 items.
pools of 128 items instead of 1024 items.
Diffstat (limited to 'gslist.c')
-rw-r--r--gslist.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gslist.c b/gslist.c
index 8b20a3d3a..76452cd27 100644
--- a/gslist.c
+++ b/gslist.c
@@ -102,7 +102,7 @@ g_slist_alloc (void)
if (!current_allocator)
{
GAllocator *allocator = g_allocator_new ("GLib default GSList allocator",
- 1024);
+ 128);
g_slist_validate_allocator (allocator);
allocator->last = NULL;
current_allocator = allocator;