diff options
Diffstat (limited to 'sway/tree/root.c')
-rw-r--r-- | sway/tree/root.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/sway/tree/root.c b/sway/tree/root.c index 79f2194e..068e7911 100644 --- a/sway/tree/root.c +++ b/sway/tree/root.c @@ -26,7 +26,6 @@ void root_create(void) { root_container.type = C_ROOT; root_container.layout = L_NONE; root_container.name = strdup("root"); - root_container.instructions = create_list(); root_container.children = create_list(); root_container.current.children = create_list(); wl_signal_init(&root_container.events.destroy); @@ -55,7 +54,6 @@ void root_destroy(void) { free(root_container.sway_root); // root_container - list_free(root_container.instructions); list_free(root_container.children); list_free(root_container.current.children); free(root_container.name); |