aboutsummaryrefslogtreecommitdiff
path: root/checkem
diff options
context:
space:
mode:
Diffstat (limited to 'checkem')
-rwxr-xr-xcheckem2
1 files changed, 1 insertions, 1 deletions
diff --git a/checkem b/checkem
index 2c78763..ba7c1bd 100755
--- a/checkem
+++ b/checkem
@@ -70,7 +70,7 @@ FS: for my $fs ( grep { @{$_} > 1 } values %sizes ) {
F: for my $f ( @{$fs} ) {
# Catch hard links on compliant systems by keeping a dev/inode hash
- my ( $dev, $ino ) = ( @{ $f->{st} }[ @STATS{qw(dev ino)} ] );
+ my ( $dev, $ino ) = @{ $f->{st} }[ @STATS{qw(dev ino)} ];
if ( $dev && $ino ) {
next F if exists $inos{$dev}{$ino};
$inos{$dev}{$ino} = $f;