if compiled without XINERAMA support assume 1 monitor by default (n = 1) - dwm - dynamic window manager HTML git clone https://git.parazyd.org/dwm DIR Log DIR Files DIR Refs DIR README DIR LICENSE --- DIR commit 38e9b67026003fdce065ec220d2195232c881538 DIR parent a3bbdb1b7bb30d3f11c24bf74414ee11f745688d HTML 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: M dwm.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- DIR 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;