about summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--client.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/client.c b/client.c
index 8ec8ffb..57ea617 100644
--- a/client.c
+++ b/client.c
@@ -477,8 +477,7 @@ zoom(Arg *arg)
 	if(sel->next)
 		sel->next->prev = sel->prev;
 	sel->prev = NULL;
-	if(clients)
-		clients->prev = sel;
+	clients->prev = sel;
 	sel->next = clients;
 	clients = sel;
 	arrange(NULL);