Introduction
Introduction Statistics Contact Development Disclaimer Help
tsetlayout should perform strcmp's if arg != NULL, because Layout is local to s…
git clone git://src.adamsgaard.dk/dwm
Log
Files
Refs
README
LICENSE
---
commit 8be3f3ec9eec07ddf1622a04874e82730f108a26
parent 5762e92994ab30aa5cc6e381e897fe847974b7c5
Author: Anselm R. Garbe <[email protected]>
Date: Wed, 22 Aug 2007 19:06:35 +0200
setlayout should perform strcmp's if arg != NULL, because Layout is local to sc…
Diffstat:
M screen.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
---
diff --git a/screen.c b/screen.c
t@@ -3,6 +3,7 @@
#include <regex.h>
#include <stdio.h>
#include <stdlib.h>
+#include <string.h>
#include <X11/Xutil.h>
/* static */
t@@ -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;
You are viewing proxied material from mx1.adamsgaard.dk. The copyright of proxied material belongs to its original authors. Any comments or complaints in relation to proxied material should be directed to the original authors of the content concerned. Please see the disclaimer for more details.