vmm: fix typo

Signed-off-by: Philipp Schuster <philipp.schuster@cyberus-technology.de>
On-behalf-of: SAP philipp.schuster@sap.com
This commit is contained in:
Philipp Schuster 2025-05-27 16:41:12 +02:00 committed by Rob Bradford
parent 53e9c94e68
commit 4987d63b6a

View file

@ -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")]