Commit 52e58a3c authored by Masahiro Yamada's avatar Masahiro Yamada
Browse files

kconfig: make input_mode static



Sparse reports:
  warning: symbol 'input_mode' was not declared. Should it be static?

Signed-off-by: default avatarMasahiro Yamada <yamada.masahiro@socionext.com>
parent 6479f327
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -35,7 +35,8 @@ enum input_mode {
	savedefconfig,
	listnewconfig,
	olddefconfig,
} input_mode = oldaskconfig;
};
static enum input_mode input_mode = oldaskconfig;

static int indent = 1;
static int tty_stdio;