Format code

This commit is contained in:
Franck STAUFFER 2020-09-04 10:03:05 +02:00
parent 403ddc2dc0
commit 39fd5e7d02
Signed by: franck.stauffer
GPG Key ID: AAF5A94045CEC261
1 changed files with 3 additions and 3 deletions

6
dwm.c
View File

@ -561,10 +561,10 @@ attachbottom(Client* c)
c->next = NULL;
Client* below = c->mon->clients;
if (below) {
for(; below->next; below = below->next);
for (; below->next; below = below->next)
;
below->next = c;
}
else
} else
c->mon->clients = c;
}