removed the if(clients) check from popping code
authorAnselm R.Garbe <arg@10ksloc.org>
Fri, 11 Aug 2006 08:34:42 +0200
changeset 250 a9392d33865a
parent 249 5d7b7ff7a289
child 251 5c72602fe587
removed the if(clients) check from popping code
client.c
--- a/client.c	Thu Aug 10 18:44:19 2006 +0200
+++ b/client.c	Fri Aug 11 08:34:42 2006 +0200
@@ -477,8 +477,7 @@
 	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);