From 07c1311bd2a0990e28f8af8e5fcdf485e21e5eb8 Mon Sep 17 00:00:00 2001 From: tuna2134 Date: Thu, 12 Sep 2024 11:35:48 +0000 Subject: [PATCH] clippy --- sbv2_api/src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sbv2_api/src/main.rs b/sbv2_api/src/main.rs index f9cd22d..a10ec0a 100644 --- a/sbv2_api/src/main.rs +++ b/sbv2_api/src/main.rs @@ -99,7 +99,7 @@ impl AppState { continue; } }; - if let Err(e) = tts_model.load_sbv2file(&entry, sbv2_bytes) { + if let Err(e) = tts_model.load_sbv2file(entry, sbv2_bytes) { log::warn!("Error loading {entry}: {e}"); }; log::info!("Loaded: {entry}");