summaryrefslogtreecommitdiff
path: root/sal
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2016-03-09 10:33:38 +0100
committerStephan Bergmann <sbergman@redhat.com>2016-03-10 18:31:59 +0100
commit278983f5d805d61d0982cd2d4ed36eb3989b05c5 (patch)
tree46166ed9e5c30990a9dca610d1187c1f026f574c /sal
parentebee3a74e8f2acaaf3057bb553ef369b9de0226a (diff)
Remove unnecessary typedef (that introduced a reserved identifier)
Change-Id: If19a3029bd7d312e40eead77856fb705d12b5fc6
Diffstat (limited to 'sal')
-rw-r--r--sal/osl/unx/secimpl.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/sal/osl/unx/secimpl.hxx b/sal/osl/unx/secimpl.hxx
index 7726d24b0ecd..3d3e2938657d 100644
--- a/sal/osl/unx/secimpl.hxx
+++ b/sal/osl/unx/secimpl.hxx
@@ -22,10 +22,10 @@
#include <pwd.h>
-typedef struct _oslSecurityImpl {
+struct oslSecurityImpl {
struct passwd m_pPasswd;
char m_buffer[1]; /* should be a C99 flexible array member */
-} oslSecurityImpl;
+};
bool SAL_CALL osl_psz_getUserIdent(oslSecurity Security, sal_Char *pszIdent, sal_uInt32 nMax);