Explorar el Código

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>
Luis R. Rodriguez hace 16 años
padre
commit
d9a7a2bd07
Se han modificado 1 ficheros con 2 adiciones y 2 borrados
  1. 2 2
      scripts/checkincludes.pl

+ 2 - 2
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);
 }