comparison src/audacious/tuple.c @ 3281:be80d9b2c9ef trunk

Error fixes.
author William Pitcock <nenolod@atheme-project.org>
date Thu, 09 Aug 2007 03:35:05 -0500
parents a26138e391ee
children b78d3197c70d
comparison
equal deleted inserted replaced
3280:a26138e391ee 3281:be80d9b2c9ef
64 { 64 {
65 Tuple *tuple; 65 Tuple *tuple;
66 66
67 if (tuple_heap == NULL) 67 if (tuple_heap == NULL)
68 { 68 {
69 tuple_heap = mowgli_heap_create(sizeof(Tuple), 256); 69 tuple_heap = mowgli_heap_create(sizeof(Tuple), 256, BH_NOW);
70 tuple_value_heap = mowgli_heap_create(sizeof(TupleValue), 512); 70 tuple_value_heap = mowgli_heap_create(sizeof(TupleValue), 512, BH_NOW);
71 mowgli_object_class_init(&tuple_klass, "audacious.tuple", tuple_destroy, FALSE); 71 mowgli_object_class_init(&tuple_klass, "audacious.tuple", tuple_destroy, FALSE);
72 } 72 }
73 73
74 /* FIXME: use mowgli_object_bless_from_class() in mowgli 0.4 74 /* FIXME: use mowgli_object_bless_from_class() in mowgli 0.4
75 when it is released --nenolod */ 75 when it is released --nenolod */