From dc2d82a2b686a908f25c893ca0c4ff98b298c1fe Mon Sep 17 00:00:00 2001 From: Michal Privoznik Date: Fri, 26 Apr 2019 14:07:47 +0200 Subject: [PATCH] virsh: Put a new line char after in attach-disk Each attribute is on its own line. We forgot to add new line character for Signed-off-by: Michal Privoznik --- tools/virsh-domain.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/virsh-domain.c b/tools/virsh-domain.c index da57d96d1a..82140feb57 100644 --- a/tools/virsh-domain.c +++ b/tools/virsh-domain.c @@ -683,7 +683,7 @@ cmdAttachDisk(vshControl *ctl, const vshCmd *cmd) virBufferAsprintf(&buf, "%s\n", serial); if (alias) - virBufferAsprintf(&buf, "", alias); + virBufferAsprintf(&buf, "\n", alias); if (wwn) virBufferAsprintf(&buf, "%s\n", wwn); -- GitLab