From: Chen Fan Date: Tue, 23 Sep 2014 01:45:21 +0000 (+0800) Subject: cpu: fix wrong single quote mark X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=1cd3765eade44d5a53fcb14053b6ba90d7147185;p=libvirt.git cpu: fix wrong single quote mark Signed-off-by: Chen Fan --- diff --git a/src/conf/cpu_conf.c b/src/conf/cpu_conf.c index 6c454ee223..116aa58e3f 100644 --- a/src/conf/cpu_conf.c +++ b/src/conf/cpu_conf.c @@ -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;