Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 0fcf5e0

Browse files
committed
Fix whitespace
1 parent ae5ed75 commit 0fcf5e0

File tree

3 files changed

+3
-5
lines changed

3 files changed

+3
-5
lines changed

src/test/perl/TestLib.pm

+2-2
Original file line numberDiff line numberDiff line change
@@ -245,7 +245,7 @@ sub append_to_file
245245
or die "could not write \"$filename\": $!";
246246
print $fh $str;
247247
close $fh;
248-
return;
248+
return;
249249
}
250250

251251
# Check that all file/dir modes in a directory match the expected values,
@@ -521,7 +521,7 @@ sub command_checks_all
521521
{
522522
like($stderr, $re, "$test_name stderr /$re/");
523523
}
524-
524+
525525
return;
526526
}
527527

src/tools/perlcheck/find_perl_files

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
21
# src/tools/perlcheck/find_perl_files
32

43
# shell function to find all perl files in the source tree
@@ -11,5 +10,5 @@ find_perl_files () {
1110
find . -type f -perm -100 -exec file {} \; -print |
1211
egrep -i ':.*perl[0-9]*\>' |
1312
cut -d: -f1
14-
} | sort -u | grep -v '^\./\.git/'
13+
} | sort -u | grep -v '^\./\.git/'
1514
}

src/tools/perlcheck/perlcriticrc

-1
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,3 @@ theme = core
1616
# for now raise severity of this to level 5
1717
[Subroutines::RequireFinalReturn]
1818
severity = 5
19-

0 commit comments

Comments
 (0)