aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xcheckem4
1 files changed, 2 insertions, 2 deletions
diff --git a/checkem b/checkem
index 2b0599a..6bacda1 100755
--- a/checkem
+++ b/checkem
@@ -58,10 +58,10 @@ find {
or return;
# Check it's a regular file
- return if !( $st{mode} & S_IFREG );
+ return if not $st{mode} & S_IFREG;
# Check its size is non-zero
- return if !$st{size};
+ return if not $st{size};
# Push the filename and the stats into this size's bucket
return push @{ $sizes{ $st{size} } },