| Submitter | Andrew Morton |
|---|---|
| Date | 2009-09-18 19:49:25 |
| Message ID | <200909181949.n8IJnPLf018952@imap1.linux-foundation.org> |
| Download | mbox | patch |
| Permalink | /patch/48616/ |
| State | New |
| Headers | show |
Comments
Patch
diff -puN scripts/checkincludes.pl~checkincludespl-close-file-as-soon-as-were-done-with-it scripts/checkincludes.pl --- a/scripts/checkincludes.pl~checkincludespl-close-file-as-soon-as-were-done-with-it +++ a/scripts/checkincludes.pl @@ -13,12 +13,12 @@ foreach $file (@ARGV) { ++$includedfiles{$1}; } } + + close(FILE); foreach $filename (keys %includedfiles) { if ($includedfiles{$filename} > 1) { print "$file: $filename is included more than once.\n"; } } - - close(FILE); }