5
0
mirror of git://git.proxmox.com/git/qemu-server.git synced 2025-01-24 02:04:10 +03:00

qemu_img_convert: add missing newline for progress output

which was accidentally removed by b5e9d97bdf8a63a542f8cbb3c1d0821ee731f796.

Signed-off-by: Fabian Ebner <f.ebner@proxmox.com>
This commit is contained in:
Fabian Ebner 2021-04-22 08:57:57 +02:00 committed by Thomas Lamprecht
parent ebce523987
commit 6629f976ac

View File

@ -6958,7 +6958,7 @@ sub qemu_img_convert {
my $total_h = render_bytes($size, 1);
my $transferred_h = render_bytes($transferred, 1);
print "transferred $transferred_h of $total_h ($percent%)";
print "transferred $transferred_h of $total_h ($percent%)\n";
}
};