summaryrefslogtreecommitdiff
path: root/apps/plugins/sdl/SDL_mixer/music.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/sdl/SDL_mixer/music.c')
-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)
1582 1582
1583#if defined(__MINGW32__) || defined(__MINGW64__) 1583#if defined(__MINGW32__) || defined(__MINGW64__)
1584 for (path = strtok(paths, ";"); path; path = strtok(NULL, ";")) { 1584 for (path = strtok(paths, ";"); path; path = strtok(NULL, ";")) {
1585#elif defined(_WIN32)
1586 for (path = strtok_s(paths, ";", &context); path; path = strtok_s(NULL, ";", &context)) {
1587#else 1585#else
1588 for (path = strtok_r(paths, ":;", &context); path; path = strtok_r(NULL, ":;", &context)) { 1586 for (path = strtok_r(paths, ":;", &context); path; path = strtok_r(NULL, ":;", &context)) {
1589#endif 1587#endif