cargo fmt --all --
This commit is contained in:
parent
d4bb0a65f2
commit
5bbc7a75c4
@ -564,10 +564,7 @@ fn is_in_system(name: &str) -> Result<(), String> {
|
|||||||
fn ffmpeg_libs() -> Result<Vec<String>, String> {
|
fn ffmpeg_libs() -> Result<Vec<String>, String> {
|
||||||
let mut libs: Vec<String> = vec![];
|
let mut libs: Vec<String> = vec![];
|
||||||
|
|
||||||
let mut ff_proc = match Command::new("ffmpeg")
|
let mut ff_proc = match Command::new("ffmpeg").stderr(Stdio::piped()).spawn() {
|
||||||
.stderr(Stdio::piped())
|
|
||||||
.spawn()
|
|
||||||
{
|
|
||||||
Err(e) => {
|
Err(e) => {
|
||||||
return Err(format!("couldn't spawn ffmpeg process: {e}"));
|
return Err(format!("couldn't spawn ffmpeg process: {e}"));
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user