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 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;