2
0
mirror of https://github.com/fhem/fhem-mirror.git synced 2025-02-01 01:09:47 +00:00

10_ZWave.pm: avoid warnings (Forum #120800)

git-svn-id: https://svn.fhem.de/fhem/trunk@24398 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
rudolfkoenig 2021-05-08 13:23:05 +00:00
parent 6cd4aebf59
commit 273aa2a703

View File

@ -4871,7 +4871,7 @@ ZWAVE_parseRouteInfo($$$)
my $repeaters = hex(substr($arg,4,2));
my @list;
my $maxlen = $repeaters * 2 + 8;
my $i;
my $i=0;
for(my $off=6; $off<$maxlen; $off+=2,$i++) {
my $dec = hex(substr($arg, $off, 2));
@ -4902,7 +4902,7 @@ ZWAVE_parseRouteInfo($$$)
my $f = substr($arg, 30, 2);
push @list2, ("at ".($f==1 ? "9.6": ($f==2 ? "40":"100"))."kbps")
if(@list2 && $f =~ m/[123]/);
if($f =~ m/[123]/);
my $routefor = join(" ", @list2);
my $tries = hex(substr($arg,32,2));