queue: process packages in the resolution queue in the correct order

pull/190/head
Ariadne Conill 2023-08-04 08:23:00 +00:00
parent 5d0e2f5092
commit a4eb097b39
1 changed files with 1 additions and 1 deletions

View File

@ -51,7 +51,7 @@ pkgconf_queue_push(pkgconf_list_t *list, const char *package)
pkgconf_queue_t *pkgq = calloc(sizeof(pkgconf_queue_t), 1);
pkgq->package = strdup(package);
pkgconf_node_insert(&pkgq->iter, pkgq, list);
pkgconf_node_insert_tail(&pkgq->iter, pkgq, list);
}
/*