summaryrefslogtreecommitdiffstats
path: root/asxparser.c
diff options
context:
space:
mode:
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 6005987d87..eea64a8835 100644
--- a/asxparser.c
+++ b/asxparser.c
@@ -34,7 +34,7 @@
////// List utils
-void
+static void
asx_list_add(void* list_ptr,void* entry){
void** list = *(void***)list_ptr;
int c = 0;
@@ -51,7 +51,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;