summaryrefslogtreecommitdiff
path: root/apps/plugins/mikmod/mloader.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/mikmod/mloader.c')
-rw-r--r--apps/plugins/mikmod/mloader.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/plugins/mikmod/mloader.c b/apps/plugins/mikmod/mloader.c
index 7bce405..5f58d81 100644
--- a/apps/plugins/mikmod/mloader.c
+++ b/apps/plugins/mikmod/mloader.c
@@ -342,7 +342,7 @@ static MODULE *ML_AllocUniMod(void)
return (mf=MikMod_malloc(sizeof(MODULE)));
}
-void Player_Free_internal(MODULE *mf)
+static void Player_Free_internal(MODULE *mf)
{
if(mf) {
Player_Exit_internal(mf);
@@ -443,7 +443,7 @@ MIKMODAPI CHAR* Player_LoadTitle(CHAR* filename)
}
/* Loads a module given an reader */
-MODULE* Player_LoadGeneric_internal(MREADER *reader,int maxchan,int curious)
+static MODULE* Player_LoadGeneric_internal(MREADER *reader,int maxchan,int curious)
{
int t;
MLOADER *l;