=?UTF-8?Q?Fr=C3=A9d=C3=A9ric=20Delanoy=20?=: atl/tests: Use BOOL type where appropriate.

Alexandre Julliard julliard at winehq.org
Mon Feb 24 15:42:30 CST 2014


Module: wine
Branch: master
Commit: 10197d3173fe24c397994fa0e9dfb6ae2b0122c6
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=10197d3173fe24c397994fa0e9dfb6ae2b0122c6

Author: Frédéric Delanoy <frederic.delanoy at gmail.com>
Date:   Sun Feb 23 19:23:19 2014 +0100

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 b9b62e7..c05b672 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");




More information about the wine-cvs mailing list