mirror of
https://github.com/netsurf-browser/netsurf
synced 2024-12-16 01:02:36 +03:00
Remove extra debug list padding
This commit is contained in:
parent
ee75f5b3ad
commit
5c73c61aa2
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user