Commit f611fcaf authored by Nikolay Sivov's avatar Nikolay Sivov Committed by Alexandre Julliard

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

parent 90eb14a6
...@@ -871,7 +871,7 @@ BOOL WINAPI CreateRestrictedToken( ...@@ -871,7 +871,7 @@ BOOL WINAPI CreateRestrictedToken(
PHANDLE newToken) PHANDLE newToken)
{ {
TOKEN_TYPE type; TOKEN_TYPE type;
SECURITY_IMPERSONATION_LEVEL level = TokenImpersonationLevel; SECURITY_IMPERSONATION_LEVEL level = SecurityAnonymous;
DWORD size; DWORD size;
FIXME("(%p, 0x%x, %u, %p, %u, %p, %u, %p, %p): stub\n", FIXME("(%p, 0x%x, %u, %p, %u, %p, %u, %p, %p): stub\n",
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment