fix(functions): getDriveValues

main
steven 2021-03-15 19:00:28 -04:00
parent 94ba5fb8b1
commit f7e1879bca
1 changed files with 1 additions and 1 deletions

View File

@ -23,7 +23,7 @@
$drive->spaceFree = disk_free_space($drive->location);
$drive->spaceTotal = disk_total_space($drive->location);
$drive->spaceUsed = getDifference(
$drive->spaceFree, $drive->spaceTotal);
$drive->spaceTotal, $drive->spaceFree);
$drive->spacePercentageUsed = getPercentageUsed(
$drive->spaceTotal, $drive->spaceUsed);
}