yac
/
coreutils
Archived
2
0
Fork 0

fixed Err warnings for build.rs

This commit is contained in:
Emma Tebibyte 2022-12-05 20:01:32 -05:00
parent 20364aa5bf
commit 680887069f
1 changed files with 2 additions and 2 deletions

View File

@ -43,8 +43,8 @@ fn main() -> Result<(), Box<dyn std::error::Error>> {
]).spawn()?;
handler_ld_true.wait();
handler_ld_false.wait();
handler_ld_true.wait().unwrap();
handler_ld_false.wait().unwrap();
Ok(())
}