diff options
author | Drew DeVault <[email protected]> | 2018-08-15 17:16:32 -0400 |
---|---|---|
committer | GitHub <[email protected]> | 2018-08-15 17:16:32 -0400 |
commit | 98ed05225e06618533fa0439fdc83463cb9f1d2e (patch) | |
tree | fa71845d227eb8c78a4eb283238498f3da25cf21 /sway/tree/root.c | |
parent | 647ace1d6de5abe4c469db2e4e9590e3ef2168b9 (diff) | |
parent | c3ef36d6b5d36f783f41b8860cee321b652f91e3 (diff) |
Merge pull request #2458 from RyanDwyer/cleanup-transactions
Simplify transactions
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 a974a461..fc908cc1 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); |