Commit e5199edb authored by Toralf Foerster's avatar Toralf Foerster Committed by Steven Rostedt

kconfig: Make a variable local in streamline_config.pl

Proper perl requires that local variables should be declared with 'my',
otherwise this may produce errors.
Signed-off-by: default avatarToralf Foerster <toralf.foerster@gmx.de>
LKML-Reference: <201005281025.00358.toralf.foerster@gmx.de>
Signed-off-by: default avatarSteven Rostedt <rostedt@goodmis.org>
parent cc106eb3
...@@ -307,7 +307,7 @@ close (LIN); ...@@ -307,7 +307,7 @@ close (LIN);
my %configs; my %configs;
foreach my $module (keys(%modules)) { foreach my $module (keys(%modules)) {
if (defined($objects{$module})) { if (defined($objects{$module})) {
@arr = @{$objects{$module}}; my @arr = @{$objects{$module}};
foreach my $conf (@arr) { foreach my $conf (@arr) {
$configs{$conf} = $module; $configs{$conf} = $module;
} }
......
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