From c8f44c405e19acd7070cbfc89f426d6e83873ec9 Mon Sep 17 00:00:00 2001 From: Sam Lantinga Date: Sun, 13 Oct 2013 20:03:03 -0700 Subject: [PATCH] Fixed bug 2142 - missing include of dynamic_fluidsynth.h in mixer.c manuel.montezelo I think that mixer is not including dynamic_fluidsynth.h in this block: #include "SDL_mixer.h" #include "load_aiff.h" #include "load_voc.h" #include "load_ogg.h" #include "load_flac.h" #include "dynamic_flac.h" #include "dynamic_modplug.h" #include "dynamic_mod.h" #include "dynamic_mp3.h" #include "dynamic_ogg.h" So the compiler then generates these warnings (as spotted in [1]): [1] http://qa.debian.org/bls/packages/l/libsdl2-mixer.html W implicit-declaration mixer.c:154 W implicit-declaration mixer.c:215 I don't think that there's a big problem unless, but anyway, it probably should be fixed to avoid possible problems in the future. --- mixer.c | 1 + 1 file changed, 1 insertion(+) diff --git a/mixer.c b/mixer.c index 5fad1786..ee1bd7c3 100644 --- a/mixer.c +++ b/mixer.c @@ -36,6 +36,7 @@ #include "load_ogg.h" #include "load_flac.h" #include "dynamic_flac.h" +#include "dynamic_fluidsynth.h" #include "dynamic_modplug.h" #include "dynamic_mod.h" #include "dynamic_mp3.h"