Skip to content

Commit

Permalink
minor fix
Browse files Browse the repository at this point in the history
  • Loading branch information
hkctkuy authored and hkctkuy committed Aug 14, 2023
1 parent 0994764 commit 54e49c4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion casr/src/util.rs
Original file line number Diff line number Diff line change
Expand Up @@ -275,7 +275,7 @@ pub fn get_output(command: &mut Command, timeout: u64) -> Result<Output> {
.unwrap()
.is_none()
{
child.kill()?;
let _ = child.kill();
warn!("Timeout: {:?}", command);
}
Ok(child.wait_with_output()?)
Expand Down

0 comments on commit 54e49c4

Please sign in to comment.