trivial: indentation/formatting fixup

Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
This commit is contained in:
Thomas Lamprecht 2021-10-05 07:05:07 +02:00
parent f9dde219f2
commit 2b9ee9441a
2 changed files with 3 additions and 4 deletions

View File

@ -187,8 +187,7 @@ my $create_disks = sub {
} elsif ($ds eq 'tpmstate0') {
# swtpm can only use raw volumes, and uses a fixed size
$size = PVE::Tools::convert_size(PVE::QemuServer::Drive::TPMSTATE_DISK_SIZE, 'b' => 'kb');
$volid = PVE::Storage::vdisk_alloc($storecfg, $storeid, $vmid,
"raw", undef, $size);
$volid = PVE::Storage::vdisk_alloc($storecfg, $storeid, $vmid, "raw", undef, $size);
} else {
$volid = PVE::Storage::vdisk_alloc($storecfg, $storeid, $vmid, $fmt, undef, $size);
}

View File

@ -339,8 +339,8 @@ my %tpmversion_fmt = (
version => {
type => 'string',
enum => [qw(v1.2 v2.0)],
description => "The TPM interface version. v2.0 is newer and should be "
. "preferred. Note that this cannot be changed later on.",
description => "The TPM interface version. v2.0 is newer and should be preferred."
." Note that this cannot be changed later on.",
optional => 1,
default => 'v2.0',
},