Mercurial > audlegacy
changeset 3529:7e8c4aadfc32 trunk
Make the default allocation values bigger.
author | Matti Hamalainen <ccr@tnsp.org> |
---|---|
date | Sat, 15 Sep 2007 00:23:12 +0300 |
parents | 9cc39a38fdfe |
children | 08dae20c75f0 18391c12c18c |
files | src/audacious/tuple.c |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/src/audacious/tuple.c Fri Sep 14 23:55:45 2007 +0300 +++ b/src/audacious/tuple.c Sat Sep 15 00:23:12 2007 +0300 @@ -122,8 +122,8 @@ if (tuple_heap == NULL) { - tuple_heap = mowgli_heap_create(sizeof(Tuple), 256, BH_NOW); - tuple_value_heap = mowgli_heap_create(sizeof(TupleValue), 512, BH_NOW); + tuple_heap = mowgli_heap_create(sizeof(Tuple), 512, BH_NOW); + tuple_value_heap = mowgli_heap_create(sizeof(TupleValue), 1024, BH_NOW); mowgli_object_class_init(&tuple_klass, "audacious.tuple", tuple_destroy, FALSE); }