Skip to content

Commit

Permalink
fix clippy warning
Browse files Browse the repository at this point in the history
  • Loading branch information
aschey committed Sep 15, 2023
1 parent d24168b commit 94fb019
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion platuned/server/src/server.rs
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ pub async fn run_all(shutdown_rx: BroadcastEventStore<Signal>) -> Result<()> {
path
};
#[cfg(windows)]
let socket_path = PathBuf::from(r#"\\.\pipe\platuned"#);
let socket_path = PathBuf::from(r"\\.\pipe\platuned");

let ipc_server = run_server(
shutdown_rx.clone(),
Expand Down

0 comments on commit 94fb019

Please sign in to comment.