Skip to content
This repository has been archived by the owner on Feb 11, 2021. It is now read-only.

Commit

Permalink
Fix third party "-Wall -Werror" builds
Browse files Browse the repository at this point in the history
  • Loading branch information
Couriersud committed Jan 12, 2009
1 parent 29927bc commit f48775b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions include/SDL_video.h
Expand Up @@ -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();
Expand All @@ -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();
Expand All @@ -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);


/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
Expand Down

0 comments on commit f48775b

Please sign in to comment.