[FFmpeg-cvslog] r22563 - trunk/tools/patcheck

daniel subversion
Tue Mar 16 00:32:20 CET 2010


Author: daniel
Date: Tue Mar 16 00:32:20 2010
New Revision: 22563

Log:
patcheck: Escape parentheses in grep calls

Modified:
   trunk/tools/patcheck

Modified: trunk/tools/patcheck
==============================================================================
--- trunk/tools/patcheck	Tue Mar 16 00:15:24 2010	(r22562)
+++ trunk/tools/patcheck	Tue Mar 16 00:32:20 2010	(r22563)
@@ -72,10 +72,10 @@ hiegrep '(:\+|,|;)( *|static|\*)*'"$ERE_
 hiegrep ' *static *'"$ERE_FUNCS"'[^)]*\);' 'static prototype, maybe you should reorder your functions' $*
 
 hiegrep2 '\.long_name *=' 'NULL_IF_CONFIG_SMAL' 'missing NULL_IF_CONFIG_SMAL' $*
-hiegrep2 '\.pix_fmts *= *(' 'const' 'missing const for pix_fmts array' $*
-hiegrep2 '\.sample_fmts *= *(' 'const' 'missing const for sample_fmts array' $*
-hiegrep2 '\.supported_framerates *= *(' 'const' 'missing const for supported_framerates array' $*
-hiegrep2 '\.channel_layouts *= *(' 'const' 'missing const for channel_layouts array' $*
+hiegrep2 '\.pix_fmts *= *\(' 'const' 'missing const for pix_fmts array' $*
+hiegrep2 '\.sample_fmts *= *\(' 'const' 'missing const for sample_fmts array' $*
+hiegrep2 '\.supported_framerates *= *\(' 'const' 'missing const for supported_framerates array' $*
+hiegrep2 '\.channel_layouts *= *\(' 'const' 'missing const for channel_layouts array' $*
 
 #egrep $OPT '^\+.*const ' $*| grep -v 'static'> $TMP && printf '\nnon static const\n'
 #cat $TMP



More information about the ffmpeg-cvslog mailing list