Michael Stefaniuc : riched20/tests: Don't cast NULL.

Alexandre Julliard julliard at winehq.org
Mon Aug 30 15:53:51 CDT 2021


Module: wine
Branch: master
Commit: b701c3df99fbd6d4df7eaa11327bb11db95d8676
URL:    https://source.winehq.org/git/wine.git/?a=commit;h=b701c3df99fbd6d4df7eaa11327bb11db95d8676

Author: Michael Stefaniuc <mstefani at winehq.org>
Date:   Fri Aug 27 22:46:37 2021 +0200

riched20/tests: Don't cast NULL.

Signed-off-by: Michael Stefaniuc <mstefani at winehq.org>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

 dlls/riched20/tests/richole.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dlls/riched20/tests/richole.c b/dlls/riched20/tests/richole.c
index d5a9844b1fc..9449c6b58cc 100644
--- a/dlls/riched20/tests/richole.c
+++ b/dlls/riched20/tests/richole.c
@@ -3323,7 +3323,7 @@ static void test_InsertObject(void)
   received_reo.polesite = (IOleClientSite *)0xdeadbeef;
   hr = IRichEditOle_GetObject(reole, 2, &received_reo, REO_GETOBJ_NO_INTERFACES);
   ok(hr == S_OK, "IRichEditOle_GetObject failed: 0x%08x\n", hr);
-  ok(received_reo.polesite == (IOleClientSite *)NULL, "Got wrong site interface.\n");
+  ok(received_reo.polesite == NULL, "Got wrong site interface.\n");
 
   CHECK_REOBJECT_STRUCT(reole, REO_IOB_USE_CP, REO_GETOBJ_ALL_INTERFACES, 0, NULL, NULL, reo1.polesite, 1);
   CHECK_REOBJECT_STRUCT(reole, REO_IOB_USE_CP, REO_GETOBJ_ALL_INTERFACES, 1, NULL, NULL, reo3.polesite, 3);




More information about the wine-cvs mailing list