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 8df16e2 commit 4a3fce7Copy full SHA for 4a3fce7
1 file changed
src/bin.rs
@@ -42,11 +42,7 @@ fn run() -> io::Result<()> {
42
let path_str = String::from_utf8_lossy(&buf[..(buf.len() - 1)]);
43
#[cfg(windows)]
44
let path_str = path_str.trim_end_matches('\r');
45
- print_path(
46
- &mut stdout,
47
- &ls_colors,
48
- path_str.as_ref(),
49
- )?;
+ print_path(&mut stdout, &ls_colors, path_str.as_ref())?;
50
51
buf.clear();
52
}
0 commit comments