[NETAPI32_APITEST]

Fix GCC build

svn path=/trunk/; revision=75209
This commit is contained in:
Colin Finck 2017-06-26 15:43:58 +00:00
parent e5654cce9f
commit ef0ae276af

View file

@ -20,7 +20,7 @@ START_TEST(DsRoleGetPrimaryDomainInformation)
// Get information about the domain membership of this computer.
dwErrorCode = DsRoleGetPrimaryDomainInformation(NULL, DsRolePrimaryDomainInfoBasic, (PBYTE*)&pInfo);
ok(dwErrorCode == ERROR_SUCCESS, "DsRoleGetPrimaryDomainInformation returns %lu!\n", dwErrorCode);
ok(pInfo->MachineRole >= DsRole_RoleStandaloneWorkstation && pInfo->MachineRole <= DsRole_RolePrimaryDomainController, "pInfo->MachineRole is %lu!\n", pInfo->MachineRole);
ok(pInfo->MachineRole >= DsRole_RoleStandaloneWorkstation && pInfo->MachineRole <= DsRole_RolePrimaryDomainController, "pInfo->MachineRole is %u!\n", pInfo->MachineRole);
if (pInfo)
DsRoleFreeMemory(pInfo);