From 2c165e1288cbb60f5e677595e35f58a9c56c7010 Mon Sep 17 00:00:00 2001
From: Tony Crisci <tony@dubstepdish.com>
Date: Mon, 2 Apr 2018 21:01:33 -0400
Subject: fix more close segfaults

---
 sway/commands/kill.c | 5 +----
 1 file changed, 1 insertion(+), 4 deletions(-)

(limited to 'sway/commands')

diff --git a/sway/commands/kill.c b/sway/commands/kill.c
index 46d6e98e..811c3e6b 100644
--- a/sway/commands/kill.c
+++ b/sway/commands/kill.c
@@ -19,11 +19,8 @@ struct cmd_results *cmd_kill(int argc, char **argv) {
 				"Can only kill views and containers with this command");
 		break;
 	case C_CONTAINER:
-		con = container_destroy(con);
-		arrange_windows(con, -1, -1);
-		break;
 	case C_VIEW:
-		view_close(con->sway_view);
+		container_close(con);
 		break;
 	}
 
-- 
cgit v1.2.3