From e403e5486a64653136755d998e99b2de5f47df21 Mon Sep 17 00:00:00 2001 From: Sam Lantinga Date: Mon, 16 Oct 2017 02:14:18 -0700 Subject: [PATCH] mixer.c (mix_channels): fix misplaced SDLCALL so that it compiles. (c.f. https://hg.libsdl.org/SDL_mixer/rev/fca02fccc6ab ) --- mixer.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mixer.c b/mixer.c index 383834a5..9fbf1858 100644 --- a/mixer.c +++ b/mixer.c @@ -304,8 +304,8 @@ static void *Mix_DoEffects(int chan, void *snd, int len) /* Mixing function */ -static SDLCALL -void mix_channels(void *udata, Uint8 *stream, int len) +static void SDLCALL +mix_channels(void *udata, Uint8 *stream, int len) { Uint8 *mix_input; int i, mixable, volume = SDL_MIX_MAXVOLUME;