Skip to content

Commit c5274c5

Browse files
committed
fs/df: cargo fmt
1 parent 12fb8d2 commit c5274c5

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

fs/df.rs

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,11 @@ fn read_mount_info() -> io::Result<MountList> {
161161
let mut mount: libc::statfs = std::mem::zeroed();
162162
let rc = libc::statfs(dirname.as_ptr(), &mut mount);
163163
if rc < 0 {
164-
eprintln!("{}: {}", dirname.to_str().unwrap(), io::Error::last_os_error());
164+
eprintln!(
165+
"{}: {}",
166+
dirname.to_str().unwrap(),
167+
io::Error::last_os_error()
168+
);
165169
continue;
166170
}
167171

0 commit comments

Comments
 (0)