dwm

my fork of dwm
Index Commits Files Refs README LICENSE
commit 38e9b67026003fdce065ec220d2195232c881538
parent a3bbdb1b7bb30d3f11c24bf74414ee11f745688d
Author: Anselm R Garbe <anselm@garbe.us>
Date:   Tue, 23 Jun 2009 16:28:37 +0100

if compiled without XINERAMA support assume 1 monitor by default (n = 1)
Diffstat:
Mdwm.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dwm.c b/dwm.c
@@ -1632,7 +1632,7 @@ updatebarpos(Monitor *m) {
 
 void
 updategeom(void) {
-    int i, n;
+    int i, n = 1;
     Client *c;
     Monitor *newmons = NULL, *m;