Skip to content

Commit 24d463f

Browse files
Windows Clippy out here attacking my format!s too :D
1 parent eaa96c7 commit 24d463f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

launcher/src/main.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ async fn open_ui() -> Result<()> {
130130
#[cfg(windows)]
131131
fn is_daemon_running() -> bool {
132132
let binary = get_daemon_binary_name();
133-
println!("Locating Daemon.. {}", binary);
133+
println!("Locating Daemon.. {binary}");
134134

135135
let count = unsafe {
136136
let tasks = tasklist::Tasklist::new();
@@ -144,7 +144,7 @@ fn is_daemon_running() -> bool {
144144
.count()
145145
};
146146

147-
println!("Found: {}", count);
147+
println!("Found: {count}");
148148
count > 0
149149
}
150150

0 commit comments

Comments
 (0)