Fix warning

This commit is contained in:
sharkdp 2017-09-15 20:55:54 +02:00
parent 2def50bddd
commit 1397dbcc6f
1 changed files with 1 additions and 1 deletions

View File

@ -114,7 +114,7 @@ fn print_entry(base: &Path, entry: &PathBuf, config: &FdOptions) {
};
#[cfg(not(target_family = "unix"))]
let is_executable = |p: &std::path::PathBuf| {false};
let is_executable = |_: &std::path::PathBuf| { false };
let stdout = std::io::stdout();
let mut handle = stdout.lock();