From 1b8ae43ec9f32cd4f73ee7a1325490d7c8d0956f Mon Sep 17 00:00:00 2001 From: strawberry Date: Fri, 19 Apr 2024 23:48:22 -0400 Subject: [PATCH] fix lint for now Signed-off-by: strawberry --- src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.rs b/src/main.rs index 44964970..a827ea1d 100644 --- a/src/main.rs +++ b/src/main.rs @@ -204,7 +204,7 @@ async fn run_unix_socket_server( #[allow(clippy::let_underscore_untyped)] // error[E0658]: attributes on expressions are experimental #[cfg(feature = "systemd")] let _ = sd_notify::notify(true, &[sd_notify::NotifyState::Ready]); - let bind = tokio::net::UnixListener::bind(&path)?; + let bind = tokio::net::UnixListener::bind(path)?; info!("Listening at {:?}", path); Ok(())