aboutsummaryrefslogtreecommitdiff
path: root/checkem
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2017-08-04 13:36:49 +1200
committerTom Ryder <tom@sanctum.geek.nz>2017-08-04 13:36:49 +1200
commitfa929fc75b52b7950157bc5e4292b3f1ec25d431 (patch)
tree578c18a1c5dbb5e8143d56921fbb28f5a1540249 /checkem
parentSwap strict/warnings (diff)
downloadcheckem-fa929fc75b52b7950157bc5e4292b3f1ec25d431.tar.gz
checkem-fa929fc75b52b7950157bc5e4292b3f1ec25d431.zip
Remove unneeded parens
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;