Format code
This commit is contained in:
parent
403ddc2dc0
commit
39fd5e7d02
6
dwm.c
6
dwm.c
@ -561,10 +561,10 @@ attachbottom(Client* c)
|
|||||||
c->next = NULL;
|
c->next = NULL;
|
||||||
Client* below = c->mon->clients;
|
Client* below = c->mon->clients;
|
||||||
if (below) {
|
if (below) {
|
||||||
for(; below->next; below = below->next);
|
for (; below->next; below = below->next)
|
||||||
|
;
|
||||||
below->next = c;
|
below->next = c;
|
||||||
}
|
} else
|
||||||
else
|
|
||||||
c->mon->clients = c;
|
c->mon->clients = c;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user