Skip to content

Commit

Permalink
Address a compiler warning.
Browse files Browse the repository at this point in the history
  • Loading branch information
slime73 committed Aug 15, 2017
1 parent c7b4f2b commit 2e4248e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/video/SDL_sysvideo.h
Expand Up @@ -403,7 +403,7 @@ extern void *SDL_GetDisplayDriverData( int displayIndex );
extern void SDL_GL_DeduceMaxSupportedESProfile(int* major, int* minor);

extern int SDL_RecreateWindow(SDL_Window * window, Uint32 flags);
extern SDL_bool SDL_HasWindows();
extern SDL_bool SDL_HasWindows(void);

extern void SDL_OnWindowShown(SDL_Window * window);
extern void SDL_OnWindowHidden(SDL_Window * window);
Expand Down
2 changes: 1 addition & 1 deletion src/video/SDL_video.c
Expand Up @@ -1609,7 +1609,7 @@ SDL_RecreateWindow(SDL_Window * window, Uint32 flags)
}

SDL_bool
SDL_HasWindows()
SDL_HasWindows(void)
{
return (_this && _this->windows != NULL);
}
Expand Down

0 comments on commit 2e4248e

Please sign in to comment.