changeset 3705:794f31fb9505

Fixed compile error using Borland C++
author Sam Lantinga <slouken@libsdl.org>
date Sun, 14 Feb 2010 15:16:13 +0000
parents 9bc9ff36eb8f
children 9676307d93be
files src/thread/win32/SDL_systhread.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/thread/win32/SDL_systhread.c	Fri Feb 12 17:14:41 2010 +0000
+++ b/src/thread/win32/SDL_systhread.c	Sun Feb 14 15:16:13 2010 +0000
@@ -80,7 +80,7 @@
     pfnSDL_CurrentEndThread pfnCurrentEndThread;
 } tThreadStartParms, *pThreadStartParms;
 
-static unsigned __stdcall
+static DWORD __stdcall
 RunThread(void *data)
 {
     pThreadStartParms pThreadParms = (pThreadStartParms) data;