[ALL] Fix typo

This commit is contained in:
Martin Duquesnoy 2008-10-02 19:34:44 +02:00
parent cee28e19c7
commit 8fd87e5892
4 changed files with 17 additions and 24 deletions

View File

@ -37,8 +37,6 @@ freelayout(void)
{
Client *c;
tags[seltag].layout.func = freelayout;
for(c = clients; c; c = c->next)
{
if(!ishide(c))
@ -99,8 +97,6 @@ maxlayout(void)
{
Client *c;
tags[seltag].layout.func = maxlayout;
for(c = nexttiled(clients); c; c = nexttiled(c->next))
{
c->tile = False;
@ -171,8 +167,6 @@ tile(void)
nm = tags[seltag].nmaster;
mht = mh - ((conf.bartop) ? 0 : barheight);
tags[seltag].layout.func = tile;
/* count all the "can-be-tiled" client */
for(n = 0, c = nexttiled(clients); c; c = nexttiled(c->next), ++n);
if(n == 0)

1
wmfs.h
View File

@ -41,7 +41,6 @@
#include <unistd.h>
#include <time.h>
#include <getopt.h>
#include <sys/time.h>
#include <sys/types.h>
#include <X11/Xlib.h>
#include <X11/Xproto.h>