5
0
mirror of git://git.proxmox.com/git/pve-guest-common.git synced 2024-12-22 13:34:00 +03:00

trivial whitespace fix

Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
This commit is contained in:
Thomas Lamprecht 2020-02-07 16:22:47 +01:00
parent fde98d5e11
commit 9420142c33

View File

@ -143,7 +143,7 @@ sub cleanup_pending {
my $changes;
foreach my $opt (keys %{$conf->{pending}}) {
next if $opt eq 'delete'; # just to be sure
if (defined($conf->{$opt}) && ($pending->{$opt} eq $conf->{$opt})) {
if (defined($conf->{$opt}) && ($pending->{$opt} eq $conf->{$opt})) {
$changes = 1;
delete $pending->{$opt};
}