Skip to content

Commit 5455ac1

Browse files
losynixwfraser
authored andcommitted
clippy
1 parent 830d1d7 commit 5455ac1

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

example/src/passthrough.rs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -85,11 +85,11 @@ fn statfs_to_fuse(statfs: libc::statfs) -> Statfs {
8585
#[cfg(target_os = "linux")]
8686
fn statfs_to_fuse(statfs: libc::statfs) -> Statfs {
8787
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,
88+
blocks: statfs.f_blocks,
89+
bfree: statfs.f_bfree,
90+
bavail: statfs.f_bavail,
91+
files: statfs.f_files,
92+
ffree: statfs.f_ffree,
9393
bsize: statfs.f_bsize as u32,
9494
namelen: statfs.f_namelen as u32,
9595
frsize: statfs.f_frsize as u32,

0 commit comments

Comments
 (0)