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

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
......@@ -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;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment