mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2025-03-07 17:28:15 +00:00
conf: Fix typo in error message in ABI stability check
s/vpu/vCPU/
This commit is contained in:
parent
1d21b884a3
commit
353871b22a
@ -12596,13 +12596,13 @@ virDomainDefCheckABIStability(virDomainDefPtr src,
|
||||
|
||||
if (src->vcpus != dst->vcpus) {
|
||||
virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
|
||||
_("Target domain vpu count %d does not match source %d"),
|
||||
_("Target domain vCPU count %d does not match source %d"),
|
||||
dst->vcpus, src->vcpus);
|
||||
return false;
|
||||
}
|
||||
if (src->maxvcpus != dst->maxvcpus) {
|
||||
virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
|
||||
_("Target domain vpu max %d does not match source %d"),
|
||||
_("Target domain vCPU max %d does not match source %d"),
|
||||
dst->maxvcpus, src->maxvcpus);
|
||||
return false;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user