From f48775bc2c3e9ccde1267ca62f8f939311e47088 Mon Sep 17 00:00:00 2001 From: Couriersud Date: Mon, 12 Jan 2009 22:36:12 +0000 Subject: [PATCH] Fix third party "-Wall -Werror" builds --- include/SDL_video.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/SDL_video.h b/include/SDL_video.h index 5f0c2f498..02aec6864 100644 --- a/include/SDL_video.h +++ b/include/SDL_video.h @@ -1319,7 +1319,7 @@ extern DECLSPEC void SDLCALL SDL_DestroyRenderer(SDL_WindowID windowID); * \sa SDL_EnableScreenSaver() * \sa SDL_DisableScreenSaver() */ -extern DECLSPEC SDL_bool SDLCALL SDL_IsScreenSaverEnabled(); +extern DECLSPEC SDL_bool SDLCALL SDL_IsScreenSaverEnabled(void); /** * \fn void SDL_EnableScreenSaver(); @@ -1329,7 +1329,7 @@ extern DECLSPEC SDL_bool SDLCALL SDL_IsScreenSaverEnabled(); * \sa SDL_IsScreenSaverEnabled() * \sa SDL_DisableScreenSaver() */ -extern DECLSPEC void SDLCALL SDL_EnableScreenSaver(); +extern DECLSPEC void SDLCALL SDL_EnableScreenSaver(void); /** * \fn void SDL_DisableScreenSaver(); @@ -1339,7 +1339,7 @@ extern DECLSPEC void SDLCALL SDL_EnableScreenSaver(); * \sa SDL_IsScreenSaverEnabled() * \sa SDL_EnableScreenSaver() */ -extern DECLSPEC void SDLCALL SDL_DisableScreenSaver(); +extern DECLSPEC void SDLCALL SDL_DisableScreenSaver(void); /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */