5
0
mirror of git://git.proxmox.com/git/qemu-server.git synced 2025-02-04 17:47:16 +03:00

migration: add trailing newline to aliased volumes error message

Signed-off-by: Fiona Ebner <f.ebner@proxmox.com>
This commit is contained in:
Fiona Ebner 2023-06-21 12:22:34 +02:00
parent 219719aada
commit 1e5405838a

View File

@ -448,7 +448,7 @@ sub scan_local_volumes {
for my $path (keys %$path_to_volid) {
my @volids = keys $path_to_volid->{$path}->%*;
die "detected not supported aliased volumes: '" . join("', '", @volids) . "'"
die "detected not supported aliased volumes: '" . join("', '", @volids) . "'\n"
if (scalar(@volids) > 1);
}