Apply cargo clippy --fix cleanups

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
This commit is contained in:
2026-07-14 19:51:44 +02:00
parent f0bed7a14e
commit 5ca8eb4647
4 changed files with 10 additions and 15 deletions

View File

@@ -21,7 +21,7 @@ pub fn init() {
match OpenOptions::new().create(true).append(true).open(&path) {
Ok(f) => {
*LOG.lock().unwrap() = Some(f);
log(&format!("=== TUI-WM startad ==="));
log(&"=== TUI-WM startad ===".to_string());
}
Err(e) => eprintln!("log::init: kunde inte öppna {:?}: {}", path, e),
}