win32 fix

This commit is contained in:
jsorg71 2006-09-23 02:01:13 +00:00
parent e0d2711c90
commit e00f110d54
1 changed files with 1 additions and 1 deletions

View File

@ -62,7 +62,7 @@ long APP_CC
g_get_threadid(void)
{
#if defined(_WIN32)
return 0;
return (long)GetCurrentThreadId();
#else
return (long)pthread_self();
#endif