]> xenbits.xensource.com Git - libvirt.git/commitdiff
Fix unbalanced quotation marks
authorYuri Chornoivan <yurchor@ukr.net>
Tue, 2 Aug 2016 07:04:39 +0000 (09:04 +0200)
committerDaniel Veillard <veillard@redhat.com>
Tue, 2 Aug 2016 10:36:21 +0000 (12:36 +0200)
src/conf/domain_conf.c
tools/virsh-pool.c

index a56e0f5d167ce8efbc6432a9d21c7288c8d791a8..7f876de878915f2c78d40321a1e1a3bf15439c47 100644 (file)
@@ -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;
     }
 
index 60453310df64f63c3361b3e51ab500c3366c0b69..448927249e382be7f393ecec84d925805ac7719c 100644 (file)
@@ -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));