From aeb6f6e21267ab25cdfaa3e1d73a00be456dcc73 Mon Sep 17 00:00:00 2001 From: Michael Jerris Date: Wed, 27 May 2009 04:22:35 +0000 Subject: [PATCH] fix type issue git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@13457 d0543943-73ff-0310-b7d9-9358b9ac24b2 --- src/switch_apr.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/switch_apr.c b/src/switch_apr.c index e2e33554b7..73d0197e19 100644 --- a/src/switch_apr.c +++ b/src/switch_apr.c @@ -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 }