mirror of
https://git.asonix.dog/asonix/pict-rs
synced 2024-11-20 11:21:14 +00:00
clippy
This commit is contained in:
parent
e115a0ddff
commit
04bf9aade7
1 changed files with 1 additions and 1 deletions
|
@ -105,7 +105,7 @@ impl Process {
|
||||||
Ok(Err(e)) => Err(ProcessError::Other(e)),
|
Ok(Err(e)) => Err(ProcessError::Other(e)),
|
||||||
Err(_) => {
|
Err(_) => {
|
||||||
child.kill().await.map_err(ProcessError::Other)?;
|
child.kill().await.map_err(ProcessError::Other)?;
|
||||||
return Err(ProcessError::Timeout);
|
Err(ProcessError::Timeout)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue