mirror of
https://github.com/reactos/reactos.git
synced 2024-11-20 06:15:26 +00:00
[KERNEL32_APITEST] Fix build
This commit is contained in:
parent
de2b20d240
commit
87f5d017a4
1 changed files with 2 additions and 2 deletions
|
@ -49,9 +49,9 @@ START_TEST(SetComputerNameExW)
|
|||
|
||||
/* Open keys */
|
||||
hKeyHN = OpenHostNameKey();
|
||||
ok(hKeyHN, "hKeyHN is NULL\n");
|
||||
ok(hKeyHN != NULL, "hKeyHN is NULL\n");
|
||||
hKeyCN = OpenComputerNameKey();
|
||||
ok(hKeyCN, "hKeyCN is NULL\n");
|
||||
ok(hKeyCN != NULL, "hKeyCN is NULL\n");
|
||||
if (!hKeyHN || !hKeyCN)
|
||||
{
|
||||
if (hKeyHN)
|
||||
|
|
Loading…
Reference in a new issue