]> git.sur5r.net Git - i3/i3/commitdiff
Initialize variables to prevent (false) warnings.
authorBas Pape <baspape@gmail.com>
Sun, 18 Aug 2013 16:12:19 +0000 (18:12 +0200)
committerMichael Stapelberg <michael@stapelberg.de>
Tue, 20 Aug 2013 17:05:48 +0000 (19:05 +0200)
src/commands.c

index cde1cd7c115f34139c6f6e8d38e32b77d82833f1..9686dfe4940ce1a55e6191e7a3d3bc26319a4060 100644 (file)
@@ -1950,7 +1950,7 @@ void cmd_rename_workspace(I3_CMD, char *old_name, char *new_name) {
  *
  */
 bool cmd_bar_mode(char *bar_mode, char *bar_id) {
-    int mode;
+    int mode = M_DOCK;
     bool toggle = false;
     if (strcmp(bar_mode, "dock") == 0)
         mode = M_DOCK;
@@ -1995,7 +1995,7 @@ bool cmd_bar_mode(char *bar_mode, char *bar_id) {
  *
  */
 bool cmd_bar_hidden_state(char *bar_hidden_state, char *bar_id) {
-    int hidden_state;
+    int hidden_state = S_SHOW;
     bool toggle = false;
     if (strcmp(bar_hidden_state, "hide") == 0)
         hidden_state = S_HIDE;