about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorAnselm R. Garbe <garbeam@gmail.com>2007-08-22 19:06:35 +0200
committerAnselm R. Garbe <garbeam@gmail.com>2007-08-22 19:06:35 +0200
commit8be3f3ec9eec07ddf1622a04874e82730f108a26 (patch)
treee8e4363eed32f20827680d6927cecc2ce14a90c8
parent5762e92994ab30aa5cc6e381e897fe847974b7c5 (diff)
downloaddwm-8be3f3ec9eec07ddf1622a04874e82730f108a26.tar.gz
setlayout should perform strcmp's if arg != NULL, because Layout is local to screen.o
-rw-r--r--screen.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/screen.c b/screen.c
index b534766..8d04911 100644
--- a/screen.c
+++ b/screen.c
@@ -3,6 +3,7 @@
 #include <regex.h>
 #include <stdio.h>
 #include <stdlib.h>
+#include <string.h>
 #include <X11/Xutil.h>
 
 /* static */
@@ -245,7 +246,7 @@ setlayout(const char *arg) {
 	}
 	else {
 		for(i = 0; i < nlayouts; i++)
-			if(arg == layouts[i].symbol)
+			if(!strcmp(arg, layouts[i].symbol))
 				break;
 		if(i == nlayouts)
 			return;