fop(1): closure fix

This commit is contained in:
2024-02-14 22:55:28 -07:00
parent f8e3013563
commit 4c663bf9dd

View File

@@ -93,7 +93,7 @@ fn main() {
drop(child_stdin);
}
let output = spawned.wait_with_output().unwrap_or_else(|| {
let output = spawned.wait_with_output().unwrap_or_else(|_| {
eprintln!("{}: {}: Command has no output.",
argv[0],
argv[command_arg]