fix: remove unused ffmpeg error.

This commit is contained in:
Didier Slof 2023-05-08 14:15:01 +02:00
parent 52629de98d
commit 25aeb6fddc
Signed by: didier
GPG Key ID: 01E71F18AA4398E5
2 changed files with 1 additions and 3 deletions

View File

@ -44,6 +44,7 @@ pub struct Config {
}
impl Config {
#[allow(dead_code)]
pub fn new() -> Config {
Config {
debug: None,

View File

@ -5,9 +5,6 @@ pub enum Error {
#[error("Renice error: {0}")]
ReniceError(std::io::Error),
#[error("FFmpeg error: {0}")]
FFmpegError(std::io::Error),
#[error("Job error: {0}")]
JobError(std::io::Error),
}