mirror of
https://github.com/torvalds/linux
synced 2024-11-05 18:23:50 +00:00
kconfig: remove assignment for Kconfig file
Pass av[optind] to conf_parse() directly. Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>
This commit is contained in:
parent
ee4c6f00dc
commit
9a3c3bc820
1 changed files with 1 additions and 2 deletions
|
@ -571,8 +571,7 @@ int main(int ac, char **av)
|
|||
conf_usage(progname);
|
||||
exit(1);
|
||||
}
|
||||
name = av[optind];
|
||||
conf_parse(name);
|
||||
conf_parse(av[optind]);
|
||||
//zconfdump(stdout);
|
||||
|
||||
switch (input_mode) {
|
||||
|
|
Loading…
Reference in a new issue