Hi,

Thanks for reviewing this minor patch that fixes some glitches found while 
translating libvirt.

Best regards,
Yuri
>From 0b3c80adeaa7f109074b54a154d68567ea1e7cc0 Mon Sep 17 00:00:00 2001
From: Yuri Chornoivan <yurc...@ukr.net>
Date: Tue, 2 Aug 2016 09:48:37 +0300
Subject: [PATCH] Fix unbalanced quotation marks

---
 src/conf/domain_conf.c | 4 ++--
 tools/virsh-pool.c     | 2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/conf/domain_conf.c b/src/conf/domain_conf.c
index a56e0f5..7f876de 100644
--- a/src/conf/domain_conf.c
+++ b/src/conf/domain_conf.c
@@ -8265,14 +8265,14 @@ virDomainControllerDefParseXML(xmlNodePtr node,
 
     if (max_sectors && virStrToLong_ui(max_sectors, NULL, 10, &def->max_sectors) < 0) {
         virReportError(VIR_ERR_XML_ERROR,
-                       _("Malformed 'max_sectors' value %s'"), max_sectors);
+                       _("Malformed 'max_sectors' value %s"), max_sectors);
         goto error;
     }
 
     if (ioeventfd &&
         (def->ioeventfd = virTristateSwitchTypeFromString(ioeventfd)) < 0) {
         virReportError(VIR_ERR_XML_ERROR,
-                       _("Malformed 'ioeventfd' value %s'"), ioeventfd);
+                       _("Malformed 'ioeventfd' value %s"), ioeventfd);
         goto error;
     }
 
diff --git a/tools/virsh-pool.c b/tools/virsh-pool.c
index 6045331..4489272 100644
--- a/tools/virsh-pool.c
+++ b/tools/virsh-pool.c
@@ -1973,7 +1973,7 @@ vshEventGenericPrint(virConnectPtr conn ATTRIBUTE_UNUSED,
         if (virTimeStringNowRaw(timestamp) < 0)
             timestamp[0] = '\0';
 
-        vshPrint(data->ctl, _("%s: event '%s'' for storage pool %s\n"),
+        vshPrint(data->ctl, _("%s: event '%s' for storage pool %s\n"),
                  timestamp,
                  data->cb->name,
                  virStoragePoolGetName(pool));
-- 
2.7.4

--
libvir-list mailing list
libvir-list@redhat.com
https://www.redhat.com/mailman/listinfo/libvir-list

Reply via email to