fix a small mistake.

git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@4769 fc73d0e0-1445-4013-8a0c-d673dee63da5
This commit is contained in:
Spoike 2014-10-14 16:44:52 +00:00
parent dbfd69f572
commit 008ac37b3a
1 changed files with 1 additions and 1 deletions

View File

@ -38,7 +38,7 @@ static qboolean Sys_IsThread(void *thread)
{
return pthread_equal(pthread_self(), *(pthread_t*)thread);
}
static qboolean Sys_IsMainThread(void)
boolean Sys_IsMainThread(void)
{
return Sys_IsThread(&mainthread);
}