diff tree.c @ 716:3f3e69baaaf8 libavutil

Mark non-exported functions in test and example programs as static.
author diego
date Tue, 31 Mar 2009 09:32:59 +0000
parents ae6e96434bec
children 01f68e5fb9af
line wrap: on
line diff
--- a/tree.c	Sun Mar 29 14:42:52 2009 +0000
+++ b/tree.c	Tue Mar 31 09:32:59 2009 +0000
@@ -174,7 +174,7 @@
         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;
 }