From 2687af1a9ba1f4bf26044331f0411268c004912a Mon Sep 17 00:00:00 2001 From: Masato Kikuchi Date: Thu, 27 Mar 2025 13:18:22 +0900 Subject: [PATCH] clippy --- crates/sbv2_core/src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/sbv2_core/src/main.rs b/crates/sbv2_core/src/main.rs index 07d9843..36ea49b 100644 --- a/crates/sbv2_core/src/main.rs +++ b/crates/sbv2_core/src/main.rs @@ -31,7 +31,7 @@ fn main_inner() -> anyhow::Result<()> { } let audio = - tts_holder.easy_synthesize(ident, &text, 0, 0, tts::SynthesizeOptions::default())?; + tts_holder.easy_synthesize(ident, text, 0, 0, tts::SynthesizeOptions::default())?; fs::write("output.wav", audio)?; Ok(())