mirror of
https://github.com/swaywm/sway.git
synced 2025-04-04 19:38:01 +03:00
list.c: rename free_flat_list to list_free_items_and_destroy
This commit is contained in:
parent
c8776fac42
commit
98c1e19466
12 changed files with 20 additions and 20 deletions
|
@ -45,8 +45,8 @@ struct loop *loop_create(void) {
|
|||
}
|
||||
|
||||
void loop_destroy(struct loop *loop) {
|
||||
free_flat_list(loop->fd_events);
|
||||
free_flat_list(loop->timers);
|
||||
list_free_items_and_destroy(loop->fd_events);
|
||||
list_free_items_and_destroy(loop->timers);
|
||||
free(loop->fds);
|
||||
free(loop);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue