Fix down-casting
This commit is contained in:
parent
89d610a306
commit
fdf187cf6d
@ -82,7 +82,7 @@ wxThread::ExitCode wxUpdCheckThread::Entry()
|
||||
wxQueueEvent(m_parent, e);
|
||||
}
|
||||
|
||||
return (wxThread::ExitCode)static_cast<int>(result & 0xffffffff);
|
||||
return (wxThread::ExitCode)(static_cast<INT_PTR>(result) & 0xffffffff);
|
||||
}
|
||||
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user