提交 6a408011 编写于 作者: Y Yuri Chornoivan 提交者: Ján Tomko

Fix unbalanced quotation marks

上级 5289e21f
......@@ -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;
}
......
......@@ -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));
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册