Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2009-03-31 13:32:59 +0400
committerDiego Biurrun <diego@biurrun.de>2009-03-31 13:32:59 +0400
commit504ffed19f990f91237479be93480d9b597561e2 (patch)
tree0112de10541e64bca39496011f62f0284ee87470 /libavutil/tree.c
parentcafe71c62d87955172dd6d8fcb277988f00e92e2 (diff)
Mark non-exported functions in test and example programs as static.
Originally committed as revision 18259 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavutil/tree.c')
-rw-r--r--libavutil/tree.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavutil/tree.c b/libavutil/tree.c
index 62437ffd5b..22679692b4 100644
--- a/libavutil/tree.c
+++ b/libavutil/tree.c
@@ -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;
}