diff options
author | David Tardon <dtardon@redhat.com> | 2012-03-07 13:51:46 +0100 |
---|---|---|
committer | David Tardon <dtardon@redhat.com> | 2012-03-07 14:01:34 +0100 |
commit | bed1173cfe0de2ca13bacbcbca610cecca8f3829 (patch) | |
tree | a897a43c6222cdb8b389ed3db511ffbf64ae6344 /sal | |
parent | 7daafe70db4188b2eb83e05792ff934fa574a927 (diff) |
WaE: missing braces around initializer
Diffstat (limited to 'sal')
-rw-r--r-- | sal/osl/w32/security.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sal/osl/w32/security.c b/sal/osl/w32/security.c index 29f35a16e469..9da4a977017d 100644 --- a/sal/osl/w32/security.c +++ b/sal/osl/w32/security.c @@ -245,7 +245,7 @@ sal_Bool SAL_CALL osl_isAdministrator(oslSecurity Security) { HANDLE hImpersonationToken = NULL; PSID psidAdministrators; - SID_IDENTIFIER_AUTHORITY siaNtAuthority = SECURITY_NT_AUTHORITY; + SID_IDENTIFIER_AUTHORITY siaNtAuthority = { SECURITY_NT_AUTHORITY }; sal_Bool bSuccess = sal_False; |