From 4987d63b6a585b4d7744795ae997efe1ed188933 Mon Sep 17 00:00:00 2001 From: Philipp Schuster Date: Tue, 27 May 2025 16:41:12 +0200 Subject: [PATCH] vmm: fix typo Signed-off-by: Philipp Schuster On-behalf-of: SAP philipp.schuster@sap.com --- vmm/src/cpu.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/vmm/src/cpu.rs b/vmm/src/cpu.rs index 422c6d65e..002f819a3 100644 --- a/vmm/src/cpu.rs +++ b/vmm/src/cpu.rs @@ -116,7 +116,7 @@ pub enum Error { #[error("Error creating vCPU: {0}")] VcpuCreate(#[source] anyhow::Error), - #[error("Error running bCPU: {0}")] + #[error("Error running vCPU: {0}")] VcpuRun(#[source] anyhow::Error), #[error("Error spawning vCPU thread: {0}")] @@ -128,7 +128,7 @@ pub enum Error { #[error("Error configuring vCPU: {0}")] VcpuConfiguration(#[source] arch::Error), - #[error("Still pending removed vcpu")] + #[error("Still pending removed vCPU")] VcpuPendingRemovedVcpu, #[cfg(target_arch = "aarch64")]