advapi32: Print more info about failed test.

oldstable
Robert Reif 2006-07-29 07:41:01 -04:00 committed by Alexandre Julliard
parent 3f000d8c71
commit accfc06c7a
1 changed files with 1 additions and 1 deletions

View File

@ -738,7 +738,7 @@ static void test_token_attr(void)
Name[0] = '\0';
Domain[0] = '\0';
ret = LookupAccountSid(NULL, Groups->Groups[i].Sid, Name, &NameLength, Domain, &DomainLength, &SidNameUse);
ok(ret, "LookupAccountSid failed with error %ld\n", GetLastError());
ok(ret, "LookupAccountSid(%s) failed with error %ld\n", SidString, GetLastError());
trace("\t%s, %s\\%s use: %d attr: 0x%08lx\n", SidString, Domain, Name, SidNameUse, Groups->Groups[i].Attributes);
LocalFree(SidString);
}