advapi32: Use proper enum member to initialize SECURITY_IMPERSONATION_LEVEL variable (Clang).

Signed-off-by: Nikolay Sivov <nsivov@codeweavers.com>
Signed-off-by: Hans Leidekker <hans@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Nikolay Sivov 2015-12-01 19:27:06 +03:00 committed by Alexandre Julliard
parent 90eb14a6c4
commit f611fcafd8
1 changed files with 1 additions and 1 deletions

View File

@ -871,7 +871,7 @@ BOOL WINAPI CreateRestrictedToken(
PHANDLE newToken)
{
TOKEN_TYPE type;
SECURITY_IMPERSONATION_LEVEL level = TokenImpersonationLevel;
SECURITY_IMPERSONATION_LEVEL level = SecurityAnonymous;
DWORD size;
FIXME("(%p, 0x%x, %u, %p, %u, %p, %u, %p, %p): stub\n",