mirror of
https://github.com/reactos/reactos.git
synced 2025-08-03 03:05:50 +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 */
|
/* Open keys */
|
||||||
hKeyHN = OpenHostNameKey();
|
hKeyHN = OpenHostNameKey();
|
||||||
ok(hKeyHN, "hKeyHN is NULL\n");
|
ok(hKeyHN != NULL, "hKeyHN is NULL\n");
|
||||||
hKeyCN = OpenComputerNameKey();
|
hKeyCN = OpenComputerNameKey();
|
||||||
ok(hKeyCN, "hKeyCN is NULL\n");
|
ok(hKeyCN != NULL, "hKeyCN is NULL\n");
|
||||||
if (!hKeyHN || !hKeyCN)
|
if (!hKeyHN || !hKeyCN)
|
||||||
{
|
{
|
||||||
if (hKeyHN)
|
if (hKeyHN)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue