]> git.ipfire.org Git - thirdparty/freeswitch.git/commitdiff
fix type issue
authorMichael Jerris <mike@jerris.com>
Wed, 27 May 2009 04:22:35 +0000 (04:22 +0000)
committerMichael Jerris <mike@jerris.com>
Wed, 27 May 2009 04:22:35 +0000 (04:22 +0000)
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@13457 d0543943-73ff-0310-b7d9-9358b9ac24b2

src/switch_apr.c

index e2e33554b7390c511d92d7628e1b819fdc7e9b6b..73d0197e19864851bea7b96605557ed7f2f26a31 100644 (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
 }