summaryrefslogtreecommitdiff
path: root/sal
diff options
context:
space:
mode:
Diffstat (limited to 'sal')
-rw-r--r--sal/osl/unx/conditn.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/sal/osl/unx/conditn.cxx b/sal/osl/unx/conditn.cxx
index 13f2814cf49c..cde2c152a97b 100644
--- a/sal/osl/unx/conditn.cxx
+++ b/sal/osl/unx/conditn.cxx
@@ -28,12 +28,12 @@
#include <osl/conditn.h>
#include <osl/time.h>
-typedef struct _oslConditionImpl
+struct oslConditionImpl
{
pthread_cond_t m_Condition;
pthread_mutex_t m_Lock;
bool m_State;
-} oslConditionImpl;
+};
oslCondition SAL_CALL osl_createCondition()
{