atl/tests: Use BOOL type where appropriate.

This commit is contained in:
Frédéric Delanoy 2014-02-23 19:23:19 +01:00 committed by Alexandre Julliard
parent e610713012
commit 10197d3173
1 changed files with 1 additions and 1 deletions

View File

@ -114,7 +114,7 @@ static void test_registrar(void)
hr = IRegistrar_StringRegister(registrar, textW); hr = IRegistrar_StringRegister(registrar, textW);
if (FAILED(hr)) if (FAILED(hr))
{ {
int is_limited = is_process_limited(); BOOL is_limited = is_process_limited();
ok(hr == DISP_E_EXCEPTION && is_limited, ok(hr == DISP_E_EXCEPTION && is_limited,
"IRegistrar_StringRegister failed, hr = 0x%08X, is_limited=%d\n", hr, is_limited); "IRegistrar_StringRegister failed, hr = 0x%08X, is_limited=%d\n", hr, is_limited);
skip("Skipping registrar tests\n"); skip("Skipping registrar tests\n");