Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

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

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
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -307,7 +307,7 @@ close (LIN);
my %configs;
foreach my $module (keys(%modules)) {
    if (defined($objects{$module})) {
	@arr = @{$objects{$module}};
	my @arr = @{$objects{$module}};
	foreach my $conf (@arr) {
	    $configs{$conf} = $module;
	}