From 6c25dbd495d894416f2436fae54e15a331985f78 Mon Sep 17 00:00:00 2001 From: Thomas Lamprecht Date: Fri, 6 Mar 2020 19:27:24 +0100 Subject: [PATCH] base plugin: get_subdir_files: split stat variables into single lines Signed-off-by: Thomas Lamprecht --- PVE/Storage/Plugin.pm | 17 ++++++++++++++--- 1 file changed, 14 insertions(+), 3 deletions(-) diff --git a/PVE/Storage/Plugin.pm b/PVE/Storage/Plugin.pm index 7951c13..2232261 100644 --- a/PVE/Storage/Plugin.pm +++ b/PVE/Storage/Plugin.pm @@ -913,9 +913,20 @@ my $get_subdir_files = sub { foreach my $fn (<$path/*>) { - my ($dev,$ino,$mode,$nlink,$uid,$gid,$rdev,$size, - $atime,$mtime,$ctime,$blksize,$blocks) - = stat($fn); + my ($dev, + $ino, + $mode, + $nlink, + $uid, + $gid, + $rdev, + $size, + $atime, + $mtime, + $ctime, + $blksize, + $blocks + ) = stat($fn); next if S_ISDIR($mode);