From 7a386eca4ad1b596630e960554257e122fd32110 Mon Sep 17 00:00:00 2001 From: Rob Bradford Date: Wed, 27 May 2026 12:27:00 +0100 Subject: [PATCH] vmm: Fix clippy: useless_borrows_in_formatting Replace & in formatting arguments where it is already a reference (avoiding &&). 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 796079880..dc95179ac 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 =