1
0
mirror of https://github.com/bobwen-dev/hunter synced 2025-04-12 00:55:41 +02:00

fix free space display (show "avail", instead of "free")

This commit is contained in:
rabite 2019-05-23 22:07:42 +02:00
parent 7f708df9bd
commit 5dd4666800

View File

@ -79,6 +79,6 @@ impl FsExt for Filesystem {
}
fn get_free(&self) -> String {
self.free.to_string(false)
self.avail.to_string(false)
}
}