]> git.sur5r.net Git - i3/i3/commitdiff
Remove set but never read variable
authorMichael Stapelberg <michael@stapelberg.de>
Wed, 9 May 2012 17:56:21 +0000 (19:56 +0200)
committerMichael Stapelberg <michael@stapelberg.de>
Wed, 9 May 2012 17:56:21 +0000 (19:56 +0200)
This was due to the changes in commit d25e77ce7597bf0736c610a04185c8c27694c890

src/workspace.c

index 44f32c2dfa4aecdad30dc0f40318925e0367ba77..2ff112376ab32ecef4e91a586caf5df9cbb72e87 100644 (file)
@@ -303,7 +303,7 @@ static void workspace_reassign_sticky(Con *con) {
 }
 
 
-static void _workspace_show(Con *workspace, bool changed_num_workspaces) {
+static void _workspace_show(Con *workspace) {
     Con *current, *old = NULL;
 
     /* safe-guard against showing i3-internal workspaces like __i3_scratch */
@@ -347,7 +347,6 @@ static void _workspace_show(Con *workspace, bool changed_num_workspaces) {
             LOG("Closing old workspace (%p / %s), it is empty\n", old, old->name);
             tree_close(old, DONT_KILL_WINDOW, false, false);
             ipc_send_event("workspace", I3_IPC_EVENT_WORKSPACE, "{\"change\":\"empty\"}");
-            changed_num_workspaces = true;
         }
     }
 
@@ -375,7 +374,7 @@ static void _workspace_show(Con *workspace, bool changed_num_workspaces) {
  *
  */
 void workspace_show(Con *workspace) {
-    _workspace_show(workspace, false);
+    _workspace_show(workspace);
 }
 
 /*
@@ -386,7 +385,7 @@ void workspace_show_by_name(const char *num) {
     Con *workspace;
     bool changed_num_workspaces;
     workspace = workspace_get(num, &changed_num_workspaces);
-    _workspace_show(workspace, changed_num_workspaces);
+    _workspace_show(workspace);
 }
 
 /*