[libvirt] [PATCH] cpu: fix wrong single quote mark

Chen Fan chen.fan.fnst at cn.fujitsu.com
Tue Sep 23 01:45:21 UTC 2014


Signed-off-by: Chen Fan <chen.fan.fnst at cn.fujitsu.com>
---
 src/conf/cpu_conf.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/conf/cpu_conf.c b/src/conf/cpu_conf.c
index 6c454ee..116aa58 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;
-- 
1.9.3




More information about the libvir-list mailing list