From: Peter Krempa Date: Mon, 25 Jan 2021 13:54:57 +0000 (+0100) Subject: virStorageSourceChainLookup: Don't break error message strings X-Git-Tag: v7.1.0-rc1~420 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=fa3bd723b054ae3cd8d693b4f29b3f639d9a80d6;p=thirdparty%2Flibvirt.git virStorageSourceChainLookup: Don't break error message strings Put them on one line for greppability. Signed-off-by: Peter Krempa Reviewed-by: Pavel Hrdina --- diff --git a/src/storage_file/storage_source.c b/src/storage_file/storage_source.c index 51f97b13ef..52edb91112 100644 --- a/src/storage_file/storage_source.c +++ b/src/storage_file/storage_source.c @@ -276,15 +276,13 @@ virStorageSourceChainLookup(virStorageSourcePtr chain, error: if (idx) { virReportError(VIR_ERR_INVALID_ARG, - _("could not find backing store index %u in chain " - "for '%s'"), + _("could not find backing store index '%u' in chain for '%s'"), idx, NULLSTR(start)); } else if (name) { if (startFrom) virReportError(VIR_ERR_INVALID_ARG, - _("could not find image '%s' beneath '%s' in " - "chain for '%s'"), name, NULLSTR(startFrom->path), - NULLSTR(start)); + _("could not find image '%s' beneath '%s' in chain for '%s'"), + name, NULLSTR(startFrom->path), NULLSTR(start)); else virReportError(VIR_ERR_INVALID_ARG, _("could not find image '%s' in chain for '%s'"),