summaryrefslogtreecommitdiffstats
path: root/apps/plugins/sdl/SDL_mixer
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/sdl/SDL_mixer')
-rw-r--r--apps/plugins/sdl/SDL_mixer/music.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/apps/plugins/sdl/SDL_mixer/music.c b/apps/plugins/sdl/SDL_mixer/music.c
index ab41327394..dce16a9de3 100644
--- a/apps/plugins/sdl/SDL_mixer/music.c
+++ b/apps/plugins/sdl/SDL_mixer/music.c
@@ -1582,8 +1582,6 @@ int Mix_EachSoundFont(int (*function)(const char*, void*), void *data)
#if defined(__MINGW32__) || defined(__MINGW64__)
for (path = strtok(paths, ";"); path; path = strtok(NULL, ";")) {
-#elif defined(_WIN32)
- for (path = strtok_s(paths, ";", &context); path; path = strtok_s(NULL, ";", &context)) {
#else
for (path = strtok_r(paths, ":;", &context); path; path = strtok_r(NULL, ":;", &context)) {
#endif