From 264f2620a7d2edb18ff4da306816dae846fef67e Mon Sep 17 00:00:00 2001 From: Dimitris Zenios Date: Fri, 12 Jul 2013 09:55:58 +0300 Subject: [PATCH] Fixed gcc warnings for apps using SDL headers with -Wstrict-prototypes flag. --- include/SDL_thread.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/SDL_thread.h b/include/SDL_thread.h index 8bc3e7f8d..ba5af31e2 100644 --- a/include/SDL_thread.h +++ b/include/SDL_thread.h @@ -200,7 +200,7 @@ extern DECLSPEC void SDLCALL SDL_WaitThread(SDL_Thread * thread, int *status); * \sa SDL_TLSGet() * \sa SDL_TLSSet() */ -extern DECLSPEC SDL_TLSID SDLCALL SDL_TLSCreate(); +extern DECLSPEC SDL_TLSID SDLCALL SDL_TLSCreate(void); /** * \brief Get the value associated with a thread local storage ID for the current thread.