diff options
| author | Joe Perches <joe@perches.com> | 2013-09-11 17:24:04 -0400 |
|---|---|---|
| committer | Linus Torvalds <torvalds@linux-foundation.org> | 2013-09-11 18:58:49 -0400 |
| commit | 58cb3cf66cc6330910316abb1dc7a7aa78917a27 (patch) | |
| tree | 2be791e7173ebf0b2a629acaaee8009d6c5f7c23 /scripts | |
| parent | 1b5539b1ffbdcf7113eebea7f37141d4468d9070 (diff) | |
checkpatch: fix perl version 5.12 and earlier incompatibility
A previous patch ("checkpatch: add --types option to report only
specific message types") uses a perl syntax introduced in perl version
5.14.
Use the backward compatible perl syntax instead.
Signed-off-by: Joe Perches <joe@perches.com>
Reported-by: Julia Lawall <julia.lawall@lip6.fr>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'scripts')
| -rwxr-xr-x | scripts/checkpatch.pl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/checkpatch.pl b/scripts/checkpatch.pl index 55277a8e1527..9ba4fc44112a 100755 --- a/scripts/checkpatch.pl +++ b/scripts/checkpatch.pl | |||
| @@ -174,9 +174,9 @@ sub hash_save_array_words { | |||
| 174 | sub hash_show_words { | 174 | sub hash_show_words { |
| 175 | my ($hashRef, $prefix) = @_; | 175 | my ($hashRef, $prefix) = @_; |
| 176 | 176 | ||
| 177 | if ($quiet == 0 && keys $hashRef) { | 177 | if ($quiet == 0 && keys %$hashRef) { |
| 178 | print "NOTE: $prefix message types:"; | 178 | print "NOTE: $prefix message types:"; |
| 179 | foreach my $word (sort keys $hashRef) { | 179 | foreach my $word (sort keys %$hashRef) { |
| 180 | print " $word"; | 180 | print " $word"; |
| 181 | } | 181 | } |
| 182 | print "\n\n"; | 182 | print "\n\n"; |
