cargo fmt --all --

This commit is contained in:
jb-alvarado 2022-07-08 13:00:50 +02:00
parent d4bb0a65f2
commit 5bbc7a75c4

View File

@ -564,10 +564,7 @@ fn is_in_system(name: &str) -> Result<(), String> {
fn ffmpeg_libs() -> Result<Vec<String>, String> {
let mut libs: Vec<String> = vec![];
let mut ff_proc = match Command::new("ffmpeg")
.stderr(Stdio::piped())
.spawn()
{
let mut ff_proc = match Command::new("ffmpeg").stderr(Stdio::piped()).spawn() {
Err(e) => {
return Err(format!("couldn't spawn ffmpeg process: {e}"));
}