summaryrefslogtreecommitdiffstats
path: root/sal/osl/unx/mutex.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sal/osl/unx/mutex.cxx')
-rw-r--r--sal/osl/unx/mutex.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sal/osl/unx/mutex.cxx b/sal/osl/unx/mutex.cxx
index 5898622c0754..9a004755a668 100644
--- a/sal/osl/unx/mutex.cxx
+++ b/sal/osl/unx/mutex.cxx
@@ -42,7 +42,7 @@ typedef struct _oslMutexImpl
/*****************************************************************************/
oslMutex SAL_CALL osl_createMutex()
{
- oslMutexImpl* pMutex = (oslMutexImpl*) malloc(sizeof(oslMutexImpl));
+ oslMutexImpl* pMutex = static_cast<oslMutexImpl*>(malloc(sizeof(oslMutexImpl)));
pthread_mutexattr_t aMutexAttr;
int nRet=0;