From: Peter Krempa Date: Tue, 24 Feb 2015 17:08:51 +0000 (+0100) Subject: phyp: Fix error messages mentioning memory X-Git-Tag: v1.2.14-rc1~305 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=812a9e5e66397d8e040097e1d1ab49ee1e1049ce;p=thirdparty%2Flibvirt.git phyp: Fix error messages mentioning memory The messages for currentMemory and memory were swapped. --- diff --git a/src/phyp/phyp_driver.c b/src/phyp/phyp_driver.c index 4c748cddc0..28739988c2 100644 --- a/src/phyp/phyp_driver.c +++ b/src/phyp/phyp_driver.c @@ -3486,15 +3486,15 @@ phypBuildLpar(virConnectPtr conn, virDomainDefPtr def) if (!def->mem.cur_balloon) { virReportError(VIR_ERR_XML_ERROR, "%s", - _("Field on the domain XML file is missing or has " - "invalid value.")); + _("Field on the domain XML file is " + "missing or has invalid value")); goto cleanup; } if (!def->mem.max_balloon) { virReportError(VIR_ERR_XML_ERROR, "%s", - _("Field on the domain XML file is missing or " - "has invalid value.")); + _("Field on the domain XML file is missing or " + "has invalid value")); goto cleanup; }