From 2a94bb496cd9cd883603dbea43d087e833e71033 Mon Sep 17 00:00:00 2001 From: Marco Peereboom Date: Wed, 22 Jun 2011 15:31:27 +0000 Subject: [PATCH 1/1] oops! stackinit called too many times due to stray ; found by Niclas Zeising --- scrotwm.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scrotwm.c b/scrotwm.c index b96e6f4..92ea40d 100644 --- 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(); } -- 1.7.10.4