suppress warning about casting int to a pointer of greater size

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@53956 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin 2008-06-02 20:45:50 +00:00
parent 3b3026ca0b
commit c71396b42d

View File

@ -195,5 +195,5 @@ void *AtomicTestCase::MyThread::Entry()
}
}
return (wxThread::ExitCode)negativeValuesSeen;
return wxUIntToPtr(negativeValuesSeen);
}