Put them on one line for greppability.
Signed-off-by: Peter Krempa <pkrempa(a)redhat.com>
---
src/storage_file/storage_source.c | 8 +++-----
1 file changed, 3 insertions(+), 5 deletions(-)
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'"),
--
2.29.2