Remove extra debug list padding

This commit is contained in:
Chris Young 2015-02-03 19:49:09 +00:00
parent ee75f5b3ad
commit 5c73c61aa2

View File

@ -31,16 +31,9 @@
struct MinList *NewObjList(void)
{
struct MinList *objlist;
objlist = (struct MinList *)AllocVecTagList(sizeof(struct MinList) + 10, NULL);
#warning List structure allocation is larger than necessary for debugging ^^^^
struct MinList *objlist = (struct MinList *)AllocVecTagList(sizeof(struct MinList), NULL);
NewMinList(objlist);
return(objlist);
}
struct nsObject *AddObject(struct MinList *objlist, ULONG otype)