2
0
mirror of https://github.com/fhem/fhem-mirror.git synced 2025-03-10 09:16:53 +00:00

fix: printf warnings

git-svn-id: https://svn.fhem.de/fhem/trunk@10360 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
hexenmeister 2016-01-04 21:21:02 +00:00
parent 9b8a771971
commit 5e7cadc030

View File

@ -4125,9 +4125,9 @@ sub SYSMON_decode_time_diff($)
my $h = int($s/3600); my $h = int($s/3600);
$s -= $h*3600; $s -= $h*3600;
my $m = int($s/60); my $m = int($s/60);
$s -= $m*60; #$s -= $m*60;
#return ($d,$h,$m,$s);
return ($d,$h,$m,$s); return ($d,$h,$m);
} }
#------------------------------------------------------------------------------ #------------------------------------------------------------------------------