]> git.proxmox.com Git - pve-common.git/commitdiff
fix whitespaces
authorPhilipp Hufnagl <p.hufnagl@proxmox.com>
Tue, 1 Aug 2023 14:46:02 +0000 (16:46 +0200)
committerFabian Grünbichler <f.gruenbichler@proxmox.com>
Fri, 4 Aug 2023 11:47:10 +0000 (13:47 +0200)
Signed-off-by: Philipp Hufnagl <p.hufnagl@proxmox.com>
FG: removed hunks that changed alignment..

Signed-off-by: Fabian Grünbichler <f.gruenbichler@proxmox.com>
src/PVE/Tools.pm

index d864b41b3226007f95aac0ba5e3b1a855290710f..50240c8fc34df12a1ea9bb0bac1093bd54721b03 100644 (file)
@@ -579,7 +579,7 @@ sub run_command {
            }
        }
 
-        alarm(0);
+       alarm(0);
     };
 
     my $err = $@;
@@ -1354,7 +1354,7 @@ sub dump_journal {
     my $parser = sub {
        my $line = shift;
 
-        return if $count++ < $start;
+       return if $count++ < $start;
        return if $limit <= 0;
        push @$lines, { n => int($count), t => $line};
        $limit--;