diff options
author | Anselm R Garbe <garbeam@gmail.com> | 2009-07-27 12:01:58 +0100 |
---|---|---|
committer | Anselm R Garbe <garbeam@gmail.com> | 2009-07-27 12:01:58 +0100 |
commit | 91fffb3f7d0cd731aa2a2126c411590d30231c19 (patch) | |
tree | 1749a47503fe573c9e8f1b8e4d377b214b02fc5d /dwm.c | |
parent | 1fa31efebf74f699ce91add53bc08a8e3ec2dccc (diff) | |
download | dwm-91fffb3f7d0cd731aa2a2126c411590d30231c19.tar dwm-91fffb3f7d0cd731aa2a2126c411590d30231c19.tar.gz dwm-91fffb3f7d0cd731aa2a2126c411590d30231c19.tar.bz2 |
fixed nn declaration
Diffstat (limited to 'dwm.c')
-rw-r--r-- | dwm.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -1683,11 +1683,12 @@ updatebarpos(Monitor *m) { void updategeom(void) { - int i, n = 1, nn; + int i, n = 1; Client *c; Monitor *newmons = NULL, *m = NULL, *tm; #ifdef XINERAMA + int nn; XineramaScreenInfo *info = NULL; if(XineramaIsActive(dpy)) |