From: John Ferlan Date: Mon, 29 Apr 2019 11:50:49 +0000 (-0400) Subject: conf: Fix typo in error message X-Git-Tag: v5.3.0-rc2~9 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a536088e51cfb8a650771368b50bb124f5196782;p=thirdparty%2Flibvirt.git conf: Fix typo in error message Fix obvious typo. Signed-off-by: John Ferlan ACKed-by: Michal Privoznik --- diff --git a/src/conf/storage_conf.c b/src/conf/storage_conf.c index 3ae0d7ab77..29988c36c4 100644 --- a/src/conf/storage_conf.c +++ b/src/conf/storage_conf.c @@ -666,7 +666,7 @@ virStoragePoolDefParseSource(xmlXPathContextPtr ctxt, } if (virStrToLong_uip(ver, NULL, 0, &source->protocolVer) < 0) { virReportError(VIR_ERR_XML_ERROR, - _("storage pool protocol ver '%s' is malformaed"), + _("storage pool protocol ver '%s' is malformed"), ver); goto cleanup; }