mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2025-02-22 11:22:23 +00:00
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:
parent
cd49f058a0
commit
fa3bd723b0
@ -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'"),
|
||||
|
Loading…
x
Reference in New Issue
Block a user