From e45057341252ae2d3115d7e9b21c476286b1dce0 Mon Sep 17 00:00:00 2001 From: Austin English Date: Mon, 7 Feb 2011 14:58:03 -0800 Subject: [PATCH] mshtml/tests: Make sure return value is used (LLVM/Clang). --- dlls/mshtml/tests/activex.c | 1 + 1 file changed, 1 insertion(+) diff --git a/dlls/mshtml/tests/activex.c b/dlls/mshtml/tests/activex.c index bf3e2e9a610..241342b6c6a 100644 --- a/dlls/mshtml/tests/activex.c +++ b/dlls/mshtml/tests/activex.c @@ -1281,6 +1281,7 @@ static void test_object_elem(IHTMLDocument2 *doc) CHECK_CALLED(Invoke_SECURITYCTX); hres = IHTMLObjectElement_QueryInterface(objelem, &IID_IDispatchEx, (void**)&dispex); + ok(hres == S_OK, "QueryInterface failed: %08x\n", hres); test_elem_dispex(dispex); IDispatchEx_Release(dispex);