JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
oops! stackinit called too many times due to stray ;
authorMarco Peereboom <marco@conformal.com>
Wed, 22 Jun 2011 15:31:27 +0000 (15:31 +0000)
committerMarco Peereboom <marco@conformal.com>
Wed, 22 Jun 2011 15:31:27 +0000 (15:31 +0000)
found by Niclas Zeising <niclas.zeising@gmail.com>

scrotwm.c

index b96e6f4..92ea40d 100644 (file)
--- a/scrotwm.c
+++ b/scrotwm.c
@@ -2380,7 +2380,7 @@ stack_config(struct swm_region *r, union arg *args)
        if (ws->cur_layout->l_config != NULL)
                ws->cur_layout->l_config(ws, args->id);
 
-       if (args->id != SWM_ARG_ID_STACKINIT);
+       if (args->id != SWM_ARG_ID_STACKINIT)
                stack();
 }