Fix for report when things happen in 0 seconds

This commit is contained in:
paul 2007-01-24 17:32:34 +00:00
parent 2d498ecee6
commit dc88a2792e
1 changed files with 1 additions and 1 deletions

View File

@ -264,7 +264,7 @@ $time = $end - $start;
if ($time > 0) {
$speed = round(($filecount+$duplicates)/$time, 1);
} else {
$speed = "N/A";
$speed = ($filecount+$duplicates);
}
echo "==========================================================================\n";