summaryrefslogtreecommitdiff
path: root/include/osl
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2015-03-28 19:05:46 +0100
committerStephan Bergmann <sbergman@redhat.com>2015-03-28 19:09:24 +0100
commitd57d81e529a44d8042401e36057a69ebe97e870a (patch)
tree3c434c6998bb9c8754c9b662c4bdb485c0aff29b /include/osl
parentcf54f2a10f128cf5d79397911b5be710e7081963 (diff)
Clean up C-style casts from pointers to void
Change-Id: I5e370445affbcd32b05588111f74590bf24f39d6
Diffstat (limited to 'include/osl')
-rw-r--r--include/osl/thread.hxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/osl/thread.hxx b/include/osl/thread.hxx
index 8d9a82c2d9b5..7d786eda0b62 100644
--- a/include/osl/thread.hxx
+++ b/include/osl/thread.hxx
@@ -180,7 +180,7 @@ private:
extern "C" inline void SAL_CALL threadFunc( void* param)
{
- Thread* pObj= (Thread*)param;
+ Thread* pObj= static_cast<Thread*>(param);
pObj->run();
pObj->onTerminated();
}