From: Anselm R. Garbe Date: Wed, 22 Aug 2007 17:06:35 +0000 (+0200) Subject: setlayout should perform strcmp's if arg != NULL, because Layout is local to screen.o X-Git-Url: https://jasonwoof.com/gitweb/?p=dwm.git;a=commitdiff_plain;h=8be3f3ec9eec07ddf1622a04874e82730f108a26 setlayout should perform strcmp's if arg != NULL, because Layout is local to screen.o --- diff --git a/screen.c b/screen.c index b534766..8d04911 100644 --- a/screen.c +++ b/screen.c @@ -3,6 +3,7 @@ #include #include #include +#include #include /* 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;