Commit 253835bd authored by Sam Lantinga's avatar Sam Lantinga

Fixed compiler warning

parent a1dfcdb7
...@@ -56,6 +56,7 @@ SDL_ThreadsInit(void) ...@@ -56,6 +56,7 @@ SDL_ThreadsInit(void)
clean up threads here. If any threads are still running after this call, clean up threads here. If any threads are still running after this call,
they will no longer have access to any per-thread data. they will no longer have access to any per-thread data.
*/ */
#if 0
static void static void
SDL_ThreadsQuit(void) SDL_ThreadsQuit(void)
{ {
...@@ -67,6 +68,7 @@ SDL_ThreadsQuit(void) ...@@ -67,6 +68,7 @@ SDL_ThreadsQuit(void)
SDL_DestroyMutex(mutex); SDL_DestroyMutex(mutex);
} }
} }
#endif
/* Routines for manipulating the thread list */ /* Routines for manipulating the thread list */
static void static void
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment