aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Rennie <renniej@ratix.(none)>2011-05-20 07:50:03 +0100
committerJohn Rennie <renniej@ratix.(none)>2011-05-20 07:50:03 +0100
commit30f56ec84ac4cace4b8874598b58b003d16cf2cc (patch)
treec00f54aa3306570500a04d4880eb89ff20f27395
parent37b72cc9b34733a40db82fa78ab02243abe9725e (diff)
Functions SymFromScancode and InitEvdev in WinEventsSDL.cpp changed to static
-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;