From e30435dc7219d9c70fba6c3b97623f31f6813327 Mon Sep 17 00:00:00 2001 From: Fiona Ebner Date: Wed, 12 Jun 2024 14:15:34 +0200 Subject: [PATCH] api: fix typo reported by perlcritic Signed-off-by: Fiona Ebner --- PVE/API2/Qemu.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PVE/API2/Qemu.pm b/PVE/API2/Qemu.pm index 947950af..efe69b5c 100644 --- a/PVE/API2/Qemu.pm +++ b/PVE/API2/Qemu.pm @@ -1590,7 +1590,7 @@ __PACKAGE__->register_method({ $item->{value} = $pending; $item->{pending} = $conf->{$opt}; } else { - $item->{value} = $conf->{$opt}, + $item->{value} = $conf->{$opt}; } push @$res, $item;