We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 830d1d7 commit 5455ac1Copy full SHA for 5455ac1
example/src/passthrough.rs
@@ -85,11 +85,11 @@ fn statfs_to_fuse(statfs: libc::statfs) -> Statfs {
85
#[cfg(target_os = "linux")]
86
fn statfs_to_fuse(statfs: libc::statfs) -> Statfs {
87
Statfs {
88
- blocks: statfs.f_blocks as u64,
89
- bfree: statfs.f_bfree as u64,
90
- bavail: statfs.f_bavail as u64,
91
- files: statfs.f_files as u64,
92
- ffree: statfs.f_ffree as u64,
+ blocks: statfs.f_blocks,
+ bfree: statfs.f_bfree,
+ bavail: statfs.f_bavail,
+ files: statfs.f_files,
+ ffree: statfs.f_ffree,
93
bsize: statfs.f_bsize as u32,
94
namelen: statfs.f_namelen as u32,
95
frsize: statfs.f_frsize as u32,
0 commit comments