fix type issue

git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@13457 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
Michael Jerris 2009-05-27 04:22:35 +00:00
parent bbb8adf2af
commit aeb6f6e212
1 changed files with 1 additions and 1 deletions

View File

@ -74,7 +74,7 @@ SWITCH_DECLARE(switch_thread_id_t) switch_thread_self(void)
#ifndef WIN32
return apr_os_thread_current();
#else
return (GetCurrentThreadId());
return (switch_thread_id_t)(GetCurrentThreadId());
#endif
}