From a038a243170418547764361e5b9af4ec1cf66751 Mon Sep 17 00:00:00 2001 From: Ferdinand Schober Date: Mon, 1 Jul 2024 18:47:25 +0200 Subject: [PATCH] fix the 2nd --- src/capture/error.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/capture/error.rs b/src/capture/error.rs index 212ae90..778aacb 100644 --- a/src/capture/error.rs +++ b/src/capture/error.rs @@ -41,7 +41,7 @@ impl Display for CaptureCreationError { #[cfg(target_os = "macos")] CaptureCreationError::Macos(e) => format!("{e}"), #[cfg(windows)] - CaptureCreationError::Windows => String::new(""), + CaptureCreationError::Windows => String::new(), CaptureCreationError::NoAvailableBackend => "no available backend".to_string(), }; write!(f, "could not create input capture: {reason}")