]> git.proxmox.com Git - pve-guest-common.git/commitdiff
trivial whitespace fix
authorThomas Lamprecht <t.lamprecht@proxmox.com>
Fri, 7 Feb 2020 15:22:47 +0000 (16:22 +0100)
committerThomas Lamprecht <t.lamprecht@proxmox.com>
Fri, 7 Feb 2020 15:22:47 +0000 (16:22 +0100)
Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
PVE/AbstractConfig.pm

index b63a744dc0f5801c2cf2157db7e42ae998a747db..d6e569b7aed239a2dc92d5414e7242e81f972356 100644 (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};
        }