virStorageSourceChainLookup: Don't break error message strings

Put them on one line for greppability.

Signed-off-by: Peter Krempa <pkrempa@redhat.com>
Reviewed-by: Pavel Hrdina <phrdina@redhat.com>
This commit is contained in:
Peter Krempa 2021-01-25 14:54:57 +01:00
parent cd49f058a0
commit fa3bd723b0

View File

@ -276,15 +276,13 @@ virStorageSourceChainLookup(virStorageSourcePtr chain,
error: error:
if (idx) { if (idx) {
virReportError(VIR_ERR_INVALID_ARG, virReportError(VIR_ERR_INVALID_ARG,
_("could not find backing store index %u in chain " _("could not find backing store index '%u' in chain for '%s'"),
"for '%s'"),
idx, NULLSTR(start)); idx, NULLSTR(start));
} else if (name) { } else if (name) {
if (startFrom) if (startFrom)
virReportError(VIR_ERR_INVALID_ARG, virReportError(VIR_ERR_INVALID_ARG,
_("could not find image '%s' beneath '%s' in " _("could not find image '%s' beneath '%s' in chain for '%s'"),
"chain for '%s'"), name, NULLSTR(startFrom->path), name, NULLSTR(startFrom->path), NULLSTR(start));
NULLSTR(start));
else else
virReportError(VIR_ERR_INVALID_ARG, virReportError(VIR_ERR_INVALID_ARG,
_("could not find image '%s' in chain for '%s'"), _("could not find image '%s' in chain for '%s'"),