aboutsummaryrefslogtreecommitdiff
path: root/sway/tree
diff options
context:
space:
mode:
authorBrian Ashworth <bosrsf04@gmail.com>2018-06-06 20:10:42 -0400
committerBrian Ashworth <bosrsf04@gmail.com>2018-06-06 20:11:24 -0400
commite072fbc6d98784e5610aa88251a15f64e30bbcae (patch)
tree7de104885aabb49f17739d7631ef6cd4f628e64a /sway/tree
parenta0bbe67076b8e32b47a272bc1e96be853006c65d (diff)
Switch output storing from list_t to wl_list
Diffstat (limited to 'sway/tree')
-rw-r--r--sway/tree/layout.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sway/tree/layout.c b/sway/tree/layout.c
index ce53a515..b54dc2fe 100644
--- a/sway/tree/layout.c
+++ b/sway/tree/layout.c
@@ -35,7 +35,7 @@ void layout_init(void) {
root_container.sway_root = calloc(1, sizeof(*root_container.sway_root));
root_container.sway_root->output_layout = wlr_output_layout_create();
- root_container.sway_root->outputs = create_list();
+ wl_list_init(&root_container.sway_root->outputs);
wl_list_init(&root_container.sway_root->xwayland_unmanaged);
wl_signal_init(&root_container.sway_root->events.new_container);