From 5a85c9efd2e77a1c113d00760aa6f5cccc61f406 Mon Sep 17 00:00:00 2001 From: Michael Stapelberg Date: Wed, 14 Sep 2011 23:16:23 +0100 Subject: [PATCH] fix build in 'next' (Thanks thomasba) --- src/cmdparse.y | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cmdparse.y b/src/cmdparse.y index 174b5e05..650a2eb8 100644 --- a/src/cmdparse.y +++ b/src/cmdparse.y @@ -748,7 +748,7 @@ move: TAILQ_FOREACH(current, &owindows, owindows) { printf("matching: %p / %s\n", current->con, current->con->name); - con_move_to_workspace(current->con, ws, false); + con_move_to_workspace(current->con, ws, true, false); } tree_render();