avoid format string warnings

* src/openvz_conf.c (openvzGetNodeCPUs): Add "%s" arg before _(...).
* src/uml_driver.c (umlDomainBlockPeek): Likewise.
This commit is contained in:
Jim Meyering 2008-12-10 16:35:00 +00:00
parent 3693a02fff
commit 7989276259
3 changed files with 10 additions and 4 deletions

View File

@ -1,3 +1,9 @@
Wed Dec 10 17:33:49 +0100 2008 Jim Meyering <meyering@redhat.com>
avoid format string warnings
* src/openvz_conf.c (openvzGetNodeCPUs): Add "%s" arg before _(...).
* src/uml_driver.c (umlDomainBlockPeek): Likewise.
Tue Dec 9 2008 22:35:43 +0100 Jim Meyering <meyering@redhat.com> Tue Dec 9 2008 22:35:43 +0100 Jim Meyering <meyering@redhat.com>
fix just-broken "virsh start" and "virsh pool-start" commands fix just-broken "virsh start" and "virsh pool-start" commands

View File

@ -466,7 +466,7 @@ openvzGetNodeCPUs(void)
if (virNodeInfoPopulate(NULL, &nodeinfo) < 0) { if (virNodeInfoPopulate(NULL, &nodeinfo) < 0) {
openvzError(NULL, VIR_ERR_INTERNAL_ERROR, openvzError(NULL, VIR_ERR_INTERNAL_ERROR,
_("Cound not read nodeinfo")); "%s", _("Cound not read nodeinfo"));
return 0; return 0;
} }

View File

@ -1764,13 +1764,13 @@ umlDomainBlockPeek (virDomainPtr dom,
if (!vm) { if (!vm) {
umlReportError (dom->conn, dom, NULL, VIR_ERR_INVALID_DOMAIN, umlReportError (dom->conn, dom, NULL, VIR_ERR_INVALID_DOMAIN,
_("no domain with matching uuid")); "%s", _("no domain with matching uuid"));
goto cleanup; goto cleanup;
} }
if (!path || path[0] == '\0') { if (!path || path[0] == '\0') {
umlReportError(dom->conn, dom, NULL, VIR_ERR_INVALID_ARG, umlReportError(dom->conn, dom, NULL, VIR_ERR_INVALID_ARG,
_("NULL or empty path")); "%s", _("NULL or empty path"));
goto cleanup; goto cleanup;
} }
@ -1807,7 +1807,7 @@ umlDomainBlockPeek (virDomainPtr dom,
ret = 0; ret = 0;
} else { } else {
umlReportError (dom->conn, dom, NULL, VIR_ERR_INVALID_ARG, umlReportError (dom->conn, dom, NULL, VIR_ERR_INVALID_ARG,
_("invalid path")); "%s", _("invalid path"));
} }
cleanup: cleanup: