conf: Fix typo in error message in ABI stability check

s/vpu/vCPU/
This commit is contained in:
Peter Krempa 2013-05-10 09:54:56 +02:00
parent 1d21b884a3
commit 353871b22a

View File

@ -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;
}