Mark non-exported functions in test and example programs as static.

Originally committed as revision 18259 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Diego Biurrun 2009-03-31 09:32:59 +00:00
parent cafe71c62d
commit 504ffed19f
7 changed files with 28 additions and 26 deletions

View file

@ -174,7 +174,7 @@ static void print(AVTreeNode *t, int depth){
av_log(NULL, AV_LOG_ERROR, "NULL\n");
}
int cmp(const void *a, const void *b){
static int cmp(const void *a, const void *b){
return a-b;
}