crypt32: Fix a compiler warning.

This commit is contained in:
Juan Lang 2009-02-10 11:03:11 -08:00 committed by Alexandre Julliard
parent 4899509434
commit d00a85f4ad
1 changed files with 2 additions and 2 deletions

View File

@ -138,7 +138,7 @@ static void testCreateCTL(void)
ok((!ctl &&
(GetLastError() == ERROR_INVALID_DATA ||
GetLastError() == CRYPT_E_UNEXPECTED_MSG_TYPE /* win9x */)) ||
broken(ctl /* some win98 */),
broken(ctl != NULL /* some win98 */),
"expected ERROR_INVALID_DATA, got %d (0x%08x)\n", GetLastError(),
GetLastError());
SetLastError(0xdeadbeef);
@ -147,7 +147,7 @@ static void testCreateCTL(void)
ok((!ctl &&
(GetLastError() == ERROR_INVALID_DATA ||
GetLastError() == CRYPT_E_UNEXPECTED_MSG_TYPE /* win9x */)) ||
broken(ctl /* some win98 */),
broken(ctl != NULL /* some win98 */),
"expected ERROR_INVALID_DATA, got %d (0x%08x)\n", GetLastError(),
GetLastError());
SetLastError(0xdeadbeef);