From 10197d3173fe24c397994fa0e9dfb6ae2b0122c6 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Fr=C3=A9d=C3=A9ric=20Delanoy?= Date: Sun, 23 Feb 2014 19:23:19 +0100 Subject: [PATCH] atl/tests: Use BOOL type where appropriate. --- dlls/atl/tests/registrar.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/atl/tests/registrar.c b/dlls/atl/tests/registrar.c index b9b62e74e88..c05b672591d 100644 --- a/dlls/atl/tests/registrar.c +++ b/dlls/atl/tests/registrar.c @@ -114,7 +114,7 @@ static void test_registrar(void) hr = IRegistrar_StringRegister(registrar, textW); if (FAILED(hr)) { - int is_limited = is_process_limited(); + BOOL is_limited = is_process_limited(); ok(hr == DISP_E_EXCEPTION && is_limited, "IRegistrar_StringRegister failed, hr = 0x%08X, is_limited=%d\n", hr, is_limited); skip("Skipping registrar tests\n"); -- 2.11.4.GIT