2
0
mirror of https://github.com/fhem/fhem-mirror.git synced 2025-04-20 01:06:04 +00:00

99_Utils.pm: fix typo

git-svn-id: https://svn.fhem.de/fhem/trunk@15713 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
rudolfkoenig 2017-12-28 11:01:02 +00:00
parent 4ba8049b27
commit c57c3e25b5

View File

@ -91,7 +91,7 @@ defInfo($;$)
my @etDev = devspec2array($search);
foreach my $d (@etDev) {
next unless $d;
next if($d eq $search && !$defs{$d})
next if($d eq $search && !$defs{$d});
push @ret, $defs{$d}{$internal};
}
return @ret;