From c451671c4dc6251e959d054c22950c2568f7e0e1 Mon Sep 17 00:00:00 2001 From: cpasjuste Date: Wed, 14 Mar 2018 22:02:22 +0100 Subject: [PATCH] SWITCH: thread entry should be static --- src/thread/switch/SDL_systhread.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/thread/switch/SDL_systhread.c b/src/thread/switch/SDL_systhread.c index e704d3683..b3bd286ed 100644 --- a/src/thread/switch/SDL_systhread.c +++ b/src/thread/switch/SDL_systhread.c @@ -33,7 +33,7 @@ #define STACK_SIZE 0x2000 -void +static void SDL_SYS_RunThread(void *data) { SDL_RunThread(data);