From a8ceccc7da1b73967edecfa809626da267be33c5 Mon Sep 17 00:00:00 2001 From: Akira Moroo Date: Sun, 12 Feb 2023 14:26:35 +0900 Subject: [PATCH] build: Remove needless lifetime This change is suggested by Clippy. Signed-off-by: Akira Moroo --- src/integration.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/integration.rs b/src/integration.rs index 376a654f..8cbaf29c 100644 --- a/src/integration.rs +++ b/src/integration.rs @@ -509,9 +509,9 @@ mod tests { .expect("Expect launching Cloud Hypervisor to succeed") } - fn spawn_qemu_common<'a>( + fn spawn_qemu_common( tmp_dir: &TempDir, - fw: &'a Firmware, + fw: &Firmware, os: &str, ci: &str, net: &GuestNetworkConfig,