]> git.proxmox.com Git - qemu-server.git/commitdiff
migration: add trailing newline to aliased volumes error message
authorFiona Ebner <f.ebner@proxmox.com>
Wed, 21 Jun 2023 10:22:34 +0000 (12:22 +0200)
committerFiona Ebner <f.ebner@proxmox.com>
Wed, 21 Jun 2023 10:48:11 +0000 (12:48 +0200)
Signed-off-by: Fiona Ebner <f.ebner@proxmox.com>
PVE/QemuMigrate.pm

index 1e19d838c7b844b557411ba0f7e8f655e4587efb..bc60c496a9ff4bc5c3997250fd1b55d5d7a6c2ae 100644 (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);
        }