]> xenbits.xensource.com Git - libvirt.git/commitdiff
cpu: fix wrong single quote mark
authorChen Fan <chen.fan.fnst@cn.fujitsu.com>
Tue, 23 Sep 2014 01:45:21 +0000 (09:45 +0800)
committerEric Blake <eblake@redhat.com>
Tue, 23 Sep 2014 03:55:34 +0000 (21:55 -0600)
Signed-off-by: Chen Fan <chen.fan.fnst@cn.fujitsu.com>
src/conf/cpu_conf.c

index 6c454ee2232ee05e013d587108a3311e6d810481..116aa58e3f148e75c099a2984b02aea023c6295e 100644 (file)
@@ -413,7 +413,7 @@ virCPUDefParseXML(xmlNodePtr node,
         for (j = 0; j < i; j++) {
             if (STREQ(name, def->features[j].name)) {
                 virReportError(VIR_ERR_XML_ERROR,
-                               _("CPU feature `%s' specified more than once"),
+                               _("CPU feature '%s' specified more than once"),
                                name);
                 VIR_FREE(name);
                 goto error;
@@ -731,7 +731,7 @@ virCPUDefUpdateFeatureInternal(virCPUDefPtr def,
             }
 
             virReportError(VIR_ERR_INTERNAL_ERROR,
-                           _("CPU feature `%s' specified more than once"),
+                           _("CPU feature '%s' specified more than once"),
                            name);
 
             return -1;