mirror of
https://github.com/adulau/aha.git
synced 2024-12-28 03:36:19 +00:00
checkincludes.pl: close file as soon as we're done with it
Signed-off-by: Luis R. Rodriguez <lrodriguez@atheros.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Sam Ravnborg <sam@ravnborg.org>
This commit is contained in:
parent
7db86dc97f
commit
d9a7a2bd07
1 changed files with 2 additions and 2 deletions
|
@ -14,11 +14,11 @@ foreach $file (@ARGV) {
|
|||
}
|
||||
}
|
||||
|
||||
close(FILE);
|
||||
|
||||
foreach $filename (keys %includedfiles) {
|
||||
if ($includedfiles{$filename} > 1) {
|
||||
print "$file: $filename is included more than once.\n";
|
||||
}
|
||||
}
|
||||
|
||||
close(FILE);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue