1
0
Fork 0

fop(1): closure fix

This commit is contained in:
Emma Tebibyte 2024-02-14 22:55:28 -07:00
parent f8e3013563
commit 4c663bf9dd
Signed by untrusted user: emma
GPG Key ID: 06FA419A1698C270
1 changed files with 1 additions and 1 deletions

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]