From 7c4f0a43a77c606ce91b701e1546c1b2aec2067f Mon Sep 17 00:00:00 2001 From: deuce <> Date: Fri, 2 Jun 2006 06:04:49 +0000 Subject: [PATCH] Fix KillThread/WaitThread return value. --- src/xpdev/sdlfuncs.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/xpdev/sdlfuncs.h b/src/xpdev/sdlfuncs.h index 601dafa009..7db0009ed7 100644 --- a/src/xpdev/sdlfuncs.h +++ b/src/xpdev/sdlfuncs.h @@ -28,8 +28,8 @@ struct sdlfuncs { void (*SDL_DestroySemaphore) (SDL_sem *semaphore); SDL_mutex *(*SDL_CreateMutex) (void); struct SDL_Thread *(*CreateThread) (int (*fn)(void *), void *data); - void *(*KillThread) (SDL_Thread *thread); - void *(*WaitThread) (SDL_Thread *thread, int *status); + void (*KillThread) (SDL_Thread *thread); + void (*WaitThread) (SDL_Thread *thread, int *status); int (*WaitEvent) (SDL_Event *event); SDL_Surface *(*SetVideoMode) (int width, int height, int bpp, Uint32 flags); void (*FreeSurface) (SDL_Surface *surface); -- GitLab