From 4d27640d08e304e3653e0798d65e596744a6f2c8 Mon Sep 17 00:00:00 2001 From: Rob Bradford Date: Wed, 27 May 2026 12:44:20 +0100 Subject: [PATCH] vmm: Fix clippy: uninlined_format_args Inline the format argument rather than provide it as a parameter. Signed-off-by: Rob Bradford --- vmm/src/vm.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vmm/src/vm.rs b/vmm/src/vm.rs index dc95179ac..cfcb71fa1 100644 --- a/vmm/src/vm.rs +++ b/vmm/src/vm.rs @@ -588,7 +588,7 @@ impl Vm { .validate() .map_err(Error::ConfigValidation)?; - info!("Booting VM from config: {:?}", config); + info!("Booting VM from config: {config:?}"); // Create NUMA nodes based on NumaConfig. let numa_nodes =