aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2017-09-26 19:22:01 +1300
committerTom Ryder <tom@sanctum.geek.nz>2017-09-26 19:22:01 +1300
commit4b5b7b955d845586d34882d4dacb10b120d9e90d (patch)
treed1baf3badadd865fc32306aa86a5a28a0fbac9d8
parentRemove superfluous loop label (diff)
downloadcheckem-4b5b7b955d845586d34882d4dacb10b120d9e90d.tar.gz
checkem-4b5b7b955d845586d34882d4dacb10b120d9e90d.zip
Remove stray trailing comma
-rwxr-xr-xcheckem2
1 files changed, 1 insertions, 1 deletions
diff --git a/checkem b/checkem
index 52eafa6..e1227c4 100755
--- a/checkem
+++ b/checkem
@@ -69,7 +69,7 @@ find {
wanted => sub {
# Start a hash to represent this file
- my %f = ( name => $File::Find::name, );
+ my %f = ( name => $File::Find::name );
# Pull in the file stat values we care about
@f{ keys %STATS } = ( stat $f{name} )[ values %STATS ]