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
1 changed files with 1 additions and 1 deletions

View File

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