Added "layout promote" command.

This commit is contained in:
wil 2016-12-29 20:30:32 +01:00
parent a0aa8d9780
commit 1b87193c3d
3 changed files with 6 additions and 1 deletions

View file

@ -76,7 +76,7 @@ int list_seq_find(list_t *list, int compare(const void *item, const void *data),
return -1;
}
static void list_swap(list_t *list, int src, int dest) {
void list_swap(list_t *list, int src, int dest) {
void *tmp = list->items[src];
list->items[src] = list->items[dest];
list->items[dest] = tmp;