From 200d37dabbeff38526514969cc97e10838ce53ce Mon Sep 17 00:00:00 2001 From: Ozkan Sezer Date: Wed, 20 Nov 2019 02:47:40 +0300 Subject: [PATCH] SDL.c (SDL_ExitProcess): unconstify its param to match its declaration. --- src/SDL.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/SDL.c b/src/SDL.c index 931564330..6e86ff88c 100644 --- a/src/SDL.c +++ b/src/SDL.c @@ -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