Merge pull request #196 from gsmcmullin/target_order

target: Add new targets to end of list.
This commit is contained in:
Gareth McMullin 2017-03-28 11:24:31 +13:00 committed by GitHub
commit 38705dc952
1 changed files with 8 additions and 2 deletions

View File

@ -29,8 +29,14 @@ target *target_list = NULL;
target *target_new(void)
{
target *t = (void*)calloc(1, sizeof(*t));
t->next = target_list;
target_list = t;
if (target_list) {
target *c = target_list;
while (c->next)
c = c->next;
c->next = t;
} else {
target_list = t;
}
return t;
}