summaryrefslogtreecommitdiffstats
path: root/asxparser.c
diff options
context:
space:
mode:
authordiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2010-02-18 09:26:00 +0000
committerdiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2010-02-18 09:26:00 +0000
commit93c1e23c479397fb14740d76746d6da4c6f8961c (patch)
tree4cc327fa6cb752947882917ff0c79a9a63244ece /asxparser.c
parent00554417742997c413ea611910065d0527b690ee (diff)
downloadmpv-93c1e23c479397fb14740d76746d6da4c6f8961c.tar.bz2
mpv-93c1e23c479397fb14740d76746d6da4c6f8961c.tar.xz
Mark some more functions that are not used outside of their files as static.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@30632 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'asxparser.c')
-rw-r--r--asxparser.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/asxparser.c b/asxparser.c
index 1505e8a625..931482e339 100644
--- a/asxparser.c
+++ b/asxparser.c
@@ -36,7 +36,7 @@ extern m_config_t* mconfig;
////// List utils
-void
+static void
asx_list_add(void* list_ptr,void* entry){
void** list = *(void***)list_ptr;
int c = 0;
@@ -53,7 +53,7 @@ asx_list_add(void* list_ptr,void* entry){
}
-void
+static void
asx_list_remove(void* list_ptr,void* entry,ASX_FreeFunc free_func) {
void** list = *(void***)list_ptr;
int c,e = -1;