[KERNEL32_APITEST] Fix build

This commit is contained in:
Katayama Hirofumi MZ 2019-05-27 02:34:32 +09:00
parent de2b20d240
commit 87f5d017a4

View file

@ -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)