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 12fb8d2 commit c5274c5Copy full SHA for c5274c5
fs/df.rs
@@ -161,7 +161,11 @@ fn read_mount_info() -> io::Result<MountList> {
161
let mut mount: libc::statfs = std::mem::zeroed();
162
let rc = libc::statfs(dirname.as_ptr(), &mut mount);
163
if rc < 0 {
164
- eprintln!("{}: {}", dirname.to_str().unwrap(), io::Error::last_os_error());
+ eprintln!(
165
+ "{}: {}",
166
+ dirname.to_str().unwrap(),
167
+ io::Error::last_os_error()
168
+ );
169
continue;
170
}
171
0 commit comments