diff options
| author | Anselm R. Garbe <arg@suckless.org> | 2007-02-08 13:39:33 +0100 | 
|---|---|---|
| committer | Anselm R. Garbe <arg@suckless.org> | 2007-02-08 13:39:33 +0100 | 
| commit | e39e6979981ea0308f89fde96bd81c45359dcdfd (patch) | |
| tree | b26ad9d2586c91eab6d9f9b00ebef347f286f000 /main.c | |
| parent | d2dd58eabde15ebf0a2c4c61239d65543931ae04 (diff) | |
fixed order of Bool declarations
Diffstat (limited to 'main.c')
| -rw-r--r-- | main.c | 2 | 
1 files changed, 1 insertions, 1 deletions
| @@ -18,11 +18,11 @@  /* extern */  char stext[256]; -Bool *seltag;  int bh, bmw, screen, sx, sy, sw, sh, wax, way, waw, wah;  unsigned int master, nmaster, ntags, numlockmask;  Atom wmatom[WMLast], netatom[NetLast];  Bool running = True; +Bool *seltag;  Bool selscreen = True;  Client *clients = NULL;  Client *sel = NULL; | 
