summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--sway/container.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sway/container.c b/sway/container.c
index 718608ff..829fde69 100644
--- a/sway/container.c
+++ b/sway/container.c
@@ -516,10 +516,10 @@ swayc_t *destroy_view(swayc_t *view) {
516 return NULL; 516 return NULL;
517 } 517 }
518 sway_log(L_DEBUG, "Destroying view '%p'", view); 518 sway_log(L_DEBUG, "Destroying view '%p'", view);
519 swayc_t *parent = view->parent;
519 free_swayc(view); 520 free_swayc(view);
520 521
521 // Destroy empty containers 522 // Destroy empty containers
522 swayc_t *parent = view->parent;
523 if (parent && parent->type == C_CONTAINER) { 523 if (parent && parent->type == C_CONTAINER) {
524 return destroy_container(parent); 524 return destroy_container(parent);
525 } 525 }