From b0c744c3d065078acecdeabc0ec97d6f26358fa3 Mon Sep 17 00:00:00 2001 From: twinaphex Date: Mon, 21 Sep 2020 00:52:32 +0200 Subject: [PATCH] Turn some variables static that are not used outside the source file --- frontend/drivers/platform_win32.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/frontend/drivers/platform_win32.c b/frontend/drivers/platform_win32.c index 4a940f767f..75ed97396c 100644 --- a/frontend/drivers/platform_win32.c +++ b/frontend/drivers/platform_win32.c @@ -67,16 +67,16 @@ #endif #ifdef HAVE_SAPI -static ISpVoice* pVoice = NULL; +static ISpVoice* pVoice = NULL; #endif #ifdef HAVE_NVDA -bool USE_POWERSHELL = false; -bool USE_NVDA = true; +static bool USE_POWERSHELL = false; +static bool USE_NVDA = true; #else -bool USE_POWERSHELL = true; -bool USE_NVDA = false; +static bool USE_POWERSHELL = true; +static bool USE_NVDA = false; #endif -bool USE_NVDA_BRAILLE = false; +static bool USE_NVDA_BRAILLE = false; #ifndef SM_SERVERR2 #define SM_SERVERR2 89