mirror of
https://github.com/pocoproject/poco.git
synced 2025-02-20 22:31:23 +01:00
Fix invalid reinterpret_cast to static_cast.
Signed-off-by: FrancisANDRE <zosrothko@orange.fr>
This commit is contained in:
parent
2f40cd5b59
commit
a8743b7140
@ -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)
|
||||
{
|
||||
|
Loading…
x
Reference in New Issue
Block a user