Skip to content

Commit

Permalink
SDL.c (SDL_ExitProcess): unconstify its param to match its declaration.
Browse files Browse the repository at this point in the history
  • Loading branch information
sezero committed Nov 19, 2019
1 parent 972a70d commit 200d37d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/SDL.c
Expand Up @@ -57,7 +57,7 @@ extern int SDL_HelperWindowDestroy(void);
parts of SDL, because we don't want anything calling it without an
extremely good reason. */
extern SDL_NORETURN void SDL_ExitProcess(int exitcode);
SDL_NORETURN void SDL_ExitProcess(const int exitcode)
SDL_NORETURN void SDL_ExitProcess(int exitcode)
{
#ifdef __WIN32__
/* "if you do not know the state of all threads in your process, it is
Expand Down

0 comments on commit 200d37d

Please sign in to comment.