From 1d45d149929c7a1053ea355d7388ef24fe6aea9e Mon Sep 17 00:00:00 2001 From: Ferdinand Schober Date: Mon, 28 Oct 2024 18:02:48 +0100 Subject: [PATCH] fix clippy lint --- src/capture.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/capture.rs b/src/capture.rs index f7f0fd3..fcfa5a7 100644 --- a/src/capture.rs +++ b/src/capture.rs @@ -295,7 +295,7 @@ async fn handle_capture_event( if capture.keys_pressed(&service.config.release_bind) { log::info!("releasing capture: release-bind pressed"); - return release_capture(capture, &active).await; + return release_capture(capture, active).await; } if event == CaptureEvent::Begin {