Commit 735ca9c

Anselm R.Garbe <arg@10ksloc.org>
2006-08-11 02:34:42
removed the if(clients) check from popping code
1 parent 4ee661d
Changed files (1)
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);