2
0
mirror of https://github.com/fhem/fhem-mirror.git synced 2025-01-31 06:39:11 +00:00
git-svn-id: https://svn.fhem.de/fhem/trunk@58 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
rudolfkoenig 2007-05-13 10:01:00 +00:00
parent 11d95285da
commit 58c12bdc0a

View File

@ -6,7 +6,7 @@ print("Prefix is ok (0x81)\n");
my $l = hex(substr($msg, 2, 2));
my $rl = length($msg)/2-2;
die("Bad length $l (should be $rl)\n") if($rl != $l);
die("Bad length $rl (should be $l)\n") if($rl != $l);
print("Length is ok ($l)\n");
my @data;