followup: remove unused variable and add spave between value and unit

Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
This commit is contained in:
Thomas Lamprecht 2019-04-02 14:33:10 +02:00
parent 41756a3b8a
commit f6409f6169

View File

@ -6756,8 +6756,8 @@ sub qemu_drive_mirror {
$opts->{format} = $format if $format;
if (defined($bwlimit)) {
my $bwlimit_bps = $opts->{speed} = $bwlimit * 1024;
print "drive mirror is starting for drive-$drive with bandwidth limit: ${bwlimit}KB/s\n";
$opts->{speed} = $bwlimit * 1024;
print "drive mirror is starting for drive-$drive with bandwidth limit: ${bwlimit} KB/s\n";
} else {
print "drive mirror is starting for drive-$drive\n";
}