scripts/checkpatch: Fix check for libc API defines
Re-ordering the API names moved a trailing '|' causing the pattern to match *every* #define in the input. Signed-off-by: Keith Packard <keithp@keithp.com>
This commit is contained in:
parent
e47fc45c4d
commit
3d94c830a3
1 changed files with 2 additions and 2 deletions
|
@ -595,7 +595,7 @@ our @mode_permission_funcs = (
|
||||||
our $api_defines = qr{(?x:
|
our $api_defines = qr{(?x:
|
||||||
_ATFILE_SOURCE|
|
_ATFILE_SOURCE|
|
||||||
_BSD_SOURCE|
|
_BSD_SOURCE|
|
||||||
_DEFAULT_SOURCE
|
_DEFAULT_SOURCE|
|
||||||
_GNU_SOURCE|
|
_GNU_SOURCE|
|
||||||
_ISOC11_SOURCE|
|
_ISOC11_SOURCE|
|
||||||
_ISOC99_SOURCE|
|
_ISOC99_SOURCE|
|
||||||
|
@ -603,7 +603,7 @@ our $api_defines = qr{(?x:
|
||||||
_POSIX_SOURCE|
|
_POSIX_SOURCE|
|
||||||
_SVID_SOURCE|
|
_SVID_SOURCE|
|
||||||
_XOPEN_SOURCE|
|
_XOPEN_SOURCE|
|
||||||
_XOPEN_SOURCE_EXTENDED|
|
_XOPEN_SOURCE_EXTENDED
|
||||||
)};
|
)};
|
||||||
|
|
||||||
my $word_pattern = '\b[A-Z]?[a-z]{2,}\b';
|
my $word_pattern = '\b[A-Z]?[a-z]{2,}\b';
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue