From b5bcc1a475ad7fb5c075117167835e4f54761881 Mon Sep 17 00:00:00 2001 From: Felix Chapman Date: Mon, 7 Oct 2024 00:32:29 +0100 Subject: [PATCH] Ignore _level --- src/runtime/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/runtime/mod.rs b/src/runtime/mod.rs index f1e8e4b..4ef79f3 100644 --- a/src/runtime/mod.rs +++ b/src/runtime/mod.rs @@ -28,7 +28,7 @@ const TARGET_AUDIO_FREQ: i32 = 44100; pub type ActiveRuntime = (); impl Runtime for () { - fn init_log(level: log::Level) -> Result<(), Box> { + fn init_log(_level: log::Level) -> Result<(), Box> { Ok(()) }