[FFmpeg-cvslog] tools/patcheck: fix misdetection with stuff like const_names
Michael Niedermayer
git at videolan.org
Thu May 23 19:13:42 CEST 2013
ffmpeg | branch: master | Michael Niedermayer <michaelni at gmx.at> | Thu May 23 16:00:10 2013 +0200| [0fb7fef8794141a6a3bbca039dd39d70be00b9ec] | committer: Michael Niedermayer
tools/patcheck: fix misdetection with stuff like const_names
Signed-off-by: Michael Niedermayer <michaelni at gmx.at>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=0fb7fef8794141a6a3bbca039dd39d70be00b9ec
---
tools/patcheck | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/tools/patcheck b/tools/patcheck
index 924a90d..59a16ef 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' $*
More information about the ffmpeg-cvslog
mailing list