Fix invalid reinterpret_cast to static_cast.

Signed-off-by: FrancisANDRE <zosrothko@orange.fr>
This commit is contained in:
FrancisANDRE 2015-08-17 08:08:22 +02:00
parent 2f40cd5b59
commit a8743b7140

View File

@ -118,7 +118,7 @@ void Message::init()
#if !defined(POCO_VXWORKS)
_pid = Process::id();
#endif
_ostid = reinterpret_cast<IntPtr>(Thread::currentTid());
_ostid = static_cast<IntPtr>(Thread::currentTid());
Thread* pThread = Thread::current();
if (pThread)
{