commit | 8936ffe66ace704ee2bf4b3a153aa81e77f84c4d | [log] [tgz] |
---|---|---|
author | Andres Amaya Garcia <Andres.AmayaGarcia@arm.com> | Tue Oct 17 21:23:15 2017 +0100 |
committer | Gilles Peskine <Gilles.Peskine@arm.com> | Thu Mar 22 15:46:21 2018 +0100 |
tree | 3e8bf96915b09a5629d8199829b10eaf45cac1b6 | |
parent | 4a91c1a0b53f5415b7437b8e14ddfc848bf67dac [diff] [blame] |
Ensure that only .h files are parsed in generate_errors.pl
diff --git a/scripts/generate_errors.pl b/scripts/generate_errors.pl index 623335e..31fef28 100755 --- a/scripts/generate_errors.pl +++ b/scripts/generate_errors.pl
@@ -46,7 +46,7 @@ $/ = $line_separator; -my @files = <$include_dir/*>; +my @files = <$include_dir/*.h>; my @matches; foreach my $file (@files) { open(FILE, "$file");