# HG changeset patch # User Ryan C. Gordon # Date 1252761393 0 # Node ID b8d7c7a46ff7950b2fbefd5dfa58e3bfc7179bfc # Parent 5bacec0933f55c32870c2a636db820458be85646 Fixed compiler warning on 64-bit systems (but this is still broken, really). diff -r 5bacec0933f5 -r b8d7c7a46ff7 src/thread/pthread/SDL_systhread.c --- a/src/thread/pthread/SDL_systhread.c Sat Sep 12 13:15:27 2009 +0000 +++ b/src/thread/pthread/SDL_systhread.c Sat Sep 12 13:16:33 2009 +0000 @@ -99,7 +99,7 @@ /* WARNING: This may not work for systems with 64-bit pid_t */ Uint32 SDL_ThreadID(void) { - return((Uint32)pthread_self()); + return((Uint32)((size_t)pthread_self())); } void SDL_SYS_WaitThread(SDL_Thread *thread)