From a54170eeeacd7f5b78c79dd81785e725c983ca98 Mon Sep 17 00:00:00 2001 From: Chris Young Date: Sat, 31 Jan 2015 11:30:37 +0000 Subject: Tidy up debug and increase list allocation to aid debugging --- amiga/object.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'amiga/object.c') diff --git a/amiga/object.c b/amiga/object.c index 99f359ad1..f071cceb8 100755 --- a/amiga/object.c +++ b/amiga/object.c @@ -34,7 +34,8 @@ struct MinList *NewObjList(void) struct MinList *objlist; - objlist = (struct MinList *)AllocVecTagList(sizeof(struct MinList), NULL); + objlist = (struct MinList *)AllocVecTagList(sizeof(struct MinList) + 10, NULL); +#warning List structure allocation is larger than necessary for debugging ^^^^ NewMinList(objlist); -- cgit v1.2.3