aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--xbmc/windowing/WinEventsSDL.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/xbmc/windowing/WinEventsSDL.cpp b/xbmc/windowing/WinEventsSDL.cpp
index e9bab4e723..71bb41e630 100644
--- a/xbmc/windowing/WinEventsSDL.cpp
+++ b/xbmc/windowing/WinEventsSDL.cpp
@@ -138,7 +138,7 @@ static uint16_t SymMappingsUbuntu[][2] =
};
// Called once. Checks whether evdev is loaded and sets m_bEvdev accordingly.
-void InitEvdev(void)
+static void InitEvdev(void)
{
// Set m_bEvdevInit to indicate we have been initialised
m_bEvdevInit = true;
@@ -180,7 +180,7 @@ void InitEvdev(void)
// Check the scan code and return the matching sym, or zero if the scan code
// is unknown.
-uint16_t SymFromScancode(uint16_t scancode)
+static uint16_t SymFromScancode(uint16_t scancode)
{
int i;