Skip to content

Commit 79f923d

Browse files
authored
Merge pull request #1693 from rust-osdev/bishop-fix-lints-uninlined_format_args-2
uefi: Fix clippy::uninlined_format_args lint
2 parents 0a51c59 + a68b29c commit 79f923d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

uefi/src/proto/network/http.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,7 @@ impl HttpHelper {
210210
};
211211
let mut c_hostname = String::from(hostname);
212212
c_hostname.push('\0');
213-
debug!("http: host: {}", hostname);
213+
debug!("http: host: {hostname}");
214214

215215
let mut tx_req = HttpRequestData {
216216
method,

0 commit comments

Comments
 (0)