diff options
author | Masahiro Yamada <masahiroy@kernel.org> | 2019-12-17 07:16:37 +0300 |
---|---|---|
committer | Masahiro Yamada <masahiroy@kernel.org> | 2020-01-06 20:18:45 +0300 |
commit | 68f0d62746bc7d20c10a565a562baaf968d86415 (patch) | |
tree | edde6201beaa9a1cd11c748268f4d41855f12ff6 /scripts | |
parent | 5edcef8454a4efb10a5cebdfbf284bcaf8b85451 (diff) | |
download | linux-68f0d62746bc7d20c10a565a562baaf968d86415.tar.xz |
kconfig: localmodconfig: fix indentation for closing brace
This is the closing brace for the foreach loop. Fix the misleading
indentation.
Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/kconfig/streamline_config.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/kconfig/streamline_config.pl b/scripts/kconfig/streamline_config.pl index bbaa1e11a4e9..e2f8504f5a2d 100755 --- a/scripts/kconfig/streamline_config.pl +++ b/scripts/kconfig/streamline_config.pl @@ -372,7 +372,7 @@ if (defined($lsmod_file)) { $lsmod = "$dir/lsmod"; last; } -} + } if (!defined($lsmod)) { # try just the path $lsmod = "lsmod"; |