From a68b29c00d46b26c9d73b4a54dd2003af9d1c0bb Mon Sep 17 00:00:00 2001 From: Nicholas Bishop Date: Sun, 8 Jun 2025 14:57:04 -0400 Subject: [PATCH] uefi: Fix clippy::uninlined_format_args lint --- uefi/src/proto/network/http.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/uefi/src/proto/network/http.rs b/uefi/src/proto/network/http.rs index ea3ab2519..f26a332b9 100644 --- a/uefi/src/proto/network/http.rs +++ b/uefi/src/proto/network/http.rs @@ -210,7 +210,7 @@ impl HttpHelper { }; let mut c_hostname = String::from(hostname); c_hostname.push('\0'); - debug!("http: host: {}", hostname); + debug!("http: host: {hostname}"); let mut tx_req = HttpRequestData { method,