From ade637798b5458c59c8de7ad9c8490ed7efb4797 Mon Sep 17 00:00:00 2001
From: mazmazz <mar.marcoz@outlook.com>
Date: Wed, 19 Sep 2018 19:06:24 -0400
Subject: [PATCH] MP Core Mixer: Old-style function dec fixes (buildbots)

---
 src/sdl/mixer_sound.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/sdl/mixer_sound.c b/src/sdl/mixer_sound.c
index 644a667b30..e5552b0a6b 100644
--- a/src/sdl/mixer_sound.c
+++ b/src/sdl/mixer_sound.c
@@ -506,7 +506,7 @@ static UINT32 get_adjusted_position(UINT32 position)
 		return position;
 }
 
-static void do_fading_callback()
+static void do_fading_callback(void)
 {
 	if (fading_callback)
 		(*fading_callback)();
@@ -1170,7 +1170,7 @@ void I_StopSong(void)
 	var_cleanup();
 }
 
-void I_PauseSong()
+void I_PauseSong(void)
 {
 	if(I_SongType() == MU_MID) // really, SDL Mixer? why can't you pause MIDI???
 		return;
@@ -1182,7 +1182,7 @@ void I_PauseSong()
 	songpaused = true;
 }
 
-void I_ResumeSong()
+void I_ResumeSong(void)
 {
 	if (I_SongType() == MU_MID)
 		return;
-- 
GitLab