summaryrefslogtreecommitdiff
path: root/sal
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2016-03-09 10:28:54 +0100
committerStephan Bergmann <sbergman@redhat.com>2016-03-10 18:31:57 +0100
commit630584ec35ba8ac0c2006eb6bbc12c836d94ef58 (patch)
tree2eb245a59777d4afe55eaf9a1580be21a1048af7 /sal
parenta63b599779522660a53d6acff74e604db2325413 (diff)
Remove unnecessary typedef (that introduced a reserved identifier)
Change-Id: I2b8e5e4736fab924c02fca81aabb37c4e2361265
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()
{