From 812a9e5e66397d8e040097e1d1ab49ee1e1049ce Mon Sep 17 00:00:00 2001 From: Peter Krempa Date: Tue, 24 Feb 2015 18:08:51 +0100 Subject: [PATCH] phyp: Fix error messages mentioning memory The messages for currentMemory and memory were swapped. --- src/phyp/phyp_driver.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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; } -- 2.39.5