diff options
author | David Tardon <dtardon@redhat.com> | 2012-03-07 12:15:47 +0100 |
---|---|---|
committer | David Tardon <dtardon@redhat.com> | 2012-03-07 14:01:26 +0100 |
commit | 31fdb7f4644d80cde482a576ddb5c3cb9625a15b (patch) | |
tree | 91f5277eb92ff5bc5cc46e8e5043d949e865f67b /sal/qa/osl | |
parent | 1ee529445b75c259db5c671cb1374094d1eb0985 (diff) |
WaE: missing braces around initializer
Diffstat (limited to 'sal/qa/osl')
-rw-r--r-- | sal/qa/osl/security/osl_Security.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sal/qa/osl/security/osl_Security.cxx b/sal/qa/osl/security/osl_Security.cxx index fd04ae5b17b8..fd217fda381a 100644 --- a/sal/qa/osl/security/osl_Security.cxx +++ b/sal/qa/osl/security/osl_Security.cxx @@ -571,7 +571,7 @@ void MyTestPlugInImpl::initialize( CPPUNIT_NS::TestFactoryRegistry *, /// check if logged in user is administrator: BOOL b; - SID_IDENTIFIER_AUTHORITY NtAuthority = SECURITY_NT_AUTHORITY; + SID_IDENTIFIER_AUTHORITY NtAuthority = { SECURITY_NT_AUTHORITY }; PSID AdministratorsGroup; b = AllocateAndInitializeSid( &NtAuthority, |