]> git.sur5r.net Git - i3/i3/commitdiff
Fix warning: properly initialize 'workspace' variable
authorMichael Stapelberg <michael@stapelberg.de>
Sun, 8 Apr 2012 18:45:49 +0000 (20:45 +0200)
committerMichael Stapelberg <michael@stapelberg.de>
Sun, 8 Apr 2012 18:45:49 +0000 (20:45 +0200)
src/commands.c

index e8fb7f9068480c77351f2f53be0e4ed7b848253b..1dd53cdc348122a49f0d5a806643085ad01fcd9d 100644 (file)
@@ -407,7 +407,7 @@ void cmd_move_con_to_workspace_number(I3_CMD, char *which) {
 
     LOG("should move window to workspace with number %d\n", which);
     /* get the workspace */
-    Con *output, *workspace;
+    Con *output, *workspace = NULL;
 
     char *endptr = NULL;
     long parsed_num = strtol(which, &endptr, 10);
@@ -733,7 +733,7 @@ void cmd_workspace(I3_CMD, char *which) {
  *
  */
 void cmd_workspace_number(I3_CMD, char *which) {
-    Con *output, *workspace;
+    Con *output, *workspace = NULL;
 
     char *endptr = NULL;
     long parsed_num = strtol(which, &endptr, 10);