diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2013-05-23 16:00:10 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2013-05-23 19:11:28 +0200 |
commit | 0fb7fef8794141a6a3bbca039dd39d70be00b9ec (patch) | |
tree | d1bbfdd8634c847e524ff757ebcda8f4ebb6b30b /tools/patcheck | |
parent | d51dfc7ec4f73af1b2391daf7db61942352814f7 (diff) | |
download | ffmpeg-0fb7fef8794141a6a3bbca039dd39d70be00b9ec.tar.gz |
tools/patcheck: fix misdetection with stuff like const_names
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'tools/patcheck')
-rwxr-xr-x | tools/patcheck | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/patcheck b/tools/patcheck index 924a90d638..59a16efa97 100755 --- a/tools/patcheck +++ b/tools/patcheck @@ -50,7 +50,7 @@ hiegrep2 '\b_[a-zA-Z0-9_]{1,}' '__(asm|attribute)([^a-zA-Z0-9]|$)' 'reserved ide hiegrep '//[-/<\* ]*$' 'empty comment' $* hiegrep '/\*[-<\* ]*\*/' 'empty comment' $* hiegrep 'for *\( *'"$ERE_PRITYP"' ' 'not gcc 2.95 compatible' $* -hiegrep '(static|inline|const) *\1' 'duplicate word' $* +hiegrep '(static|inline|const) *\1[^_a-zA-Z]' 'duplicate word' $* hiegrep 'INIT_VLC_USE_STATIC' 'forbidden ancient vlc type' $* hiegrep '=[-+\*\&] ' 'looks like compound assignment' $* hiegrep2 '/\*\* *[a-zA-Z0-9].*' '\*/' 'Inconsistently formatted doxygen comment' $* |