off by one 0

This commit is contained in:
Zane C. B-H 2019-08-26 20:35:25 -05:00
parent 07dfadee26
commit 52e290da10
1 changed files with 1 additions and 1 deletions

View File

@ -732,7 +732,7 @@ sub timeString{
my $time=$_[1];
if ( $^O =~ /^linux$/ ){
$time=$time/100000;
$time=$time/1000000;
}
my $hours=0;