fix compilation on macos

fsblkcnt_t is ony 32b there, so we have to do an additional cast
pull/654/head
trinity-1686a 7 months ago
parent d8263fdf92
commit c7f5dcd953
  1. 4
      src/rpc/system.rs

@ -899,8 +899,8 @@ impl NodeStatus {
use nix::sys::statvfs::statvfs;
let mount_avail = |path: &Path| match statvfs(path) {
Ok(x) => {
let avail = x.blocks_available() * x.fragment_size() as u64;
let total = x.blocks() * x.fragment_size() as u64;
let avail = x.blocks_available() as u64 * x.fragment_size() as u64;
let total = x.blocks() as u64 * x.fragment_size() as u64;
Some((x.filesystem_id(), avail, total))
}
Err(_) => None,

Loading…
Cancel
Save