]> git.ipfire.org Git - thirdparty/libvirt.git/commitdiff
conf: Fix typo in error message in ABI stability check
authorPeter Krempa <pkrempa@redhat.com>
Fri, 10 May 2013 07:54:56 +0000 (09:54 +0200)
committerPeter Krempa <pkrempa@redhat.com>
Fri, 10 May 2013 07:54:56 +0000 (09:54 +0200)
s/vpu/vCPU/

src/conf/domain_conf.c

index b7e253e450b9d3cb01270d9d5062540106d20442..e0bd8aa47f6c490ea23ea1bd7d6fc57f601dce96 100644 (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;
     }