From 5c54022a8994ca457ec8b67bb767eb01037866ec Mon Sep 17 00:00:00 2001 From: Monster Iestyn <iestynjealous@ntlworld.com> Date: Sun, 14 Jul 2019 16:23:01 +0100 Subject: [PATCH] Add static keyword to these variables for correctness --- 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 883ba992a..004c60605 100644 --- a/src/sdl/mixer_sound.c +++ b/src/sdl/mixer_sound.c @@ -108,11 +108,11 @@ static UINT16 current_track; #endif #ifdef HAVE_OPENMPT -int mod_err = OPENMPT_ERROR_OK; +static int mod_err = OPENMPT_ERROR_OK; static const char *mod_err_str; static UINT16 current_subsong; -size_t probesize; -int result; +static size_t probesize; +static int result; #endif static void var_cleanup(void)