advapi32/tests: Fix compilation with PSDK compiler.

Signed-off-by: Dmitry Timoshkov <dmitry@baikal.ru>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Dmitry Timoshkov 2020-11-10 20:53:05 +03:00 committed by Alexandre Julliard
parent 0c8ce3aab5
commit 65cab573ab
1 changed files with 1 additions and 1 deletions

View File

@ -336,7 +336,7 @@ static void test_LsaLookupSids(void)
{
WCHAR langW[32];
char user_buffer[64];
LSA_OBJECT_ATTRIBUTES attrs = {.Length = sizeof(attrs)};
LSA_OBJECT_ATTRIBUTES attrs = {sizeof(attrs)};
TOKEN_USER *user = (TOKEN_USER *)user_buffer;
WCHAR computer_name[64], user_name[64];
LSA_REFERENCED_DOMAIN_LIST *list;