about summary refs log tree commit diff stats
path: root/layout.c
diff options
context:
space:
mode:
authorAnselm R. Garbe <arg@suckless.org>2007-02-22 12:15:48 +0100
committerAnselm R. Garbe <arg@suckless.org>2007-02-22 12:15:48 +0100
commit5711609203602bd01b4b131572142bb171ffc560 (patch)
treeaa0c27a21869acd9fa2696aedab6020024f812b7 /layout.c
parent825b7c3eb17fd0a79005110bf28e92c4ed2f1a90 (diff)
downloaddwm-5711609203602bd01b4b131572142bb171ffc560.tar.gz
small bugfix
Diffstat (limited to 'layout.c')
-rw-r--r--layout.c18
1 files changed, 12 insertions, 6 deletions
diff --git a/layout.c b/layout.c
index 21ee99c..5d43187 100644
--- a/layout.c
+++ b/layout.c
@@ -120,11 +120,17 @@ incmasterw(const char *arg) {
 
 void
 incnmaster(const char *arg) {
-	int i = arg ? atoi(arg) : 0;
-	if((lt->arrange != tile) || (nmaster + i < 1)
-	|| (wah / (nmaster + i) <= 2 * BORDERPX))
-		return;
-	nmaster += i;
+	int i;
+
+	if(!arg)
+		nmaster = NMASTER;
+	else {
+		i = atoi(arg);
+		if((lt->arrange != tile) || (nmaster + i < 1)
+		|| (wah / (nmaster + i) <= 2 * BORDERPX))
+			return;
+		nmaster += i;
+	}
 	if(sel)
 		lt->arrange();
 	else
@@ -175,7 +181,7 @@ restack(void) {
 
 void
 setlayout(const char *arg) {
-	unsigned int i;
+	int i;
 
 	if(!arg) {
 		for(i = 0; i < nlayouts && lt != &layout[i]; i++);