Fix unbalanced quotation marks

This commit is contained in:
Yuri Chornoivan 2016-08-02 09:04:39 +02:00 committed by Daniel Veillard
parent 1fa8fd1a9b
commit b277a612c0
2 changed files with 3 additions and 3 deletions

View 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;
}

View 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));