From 94f63d768135d8a6ba8b8ef5d9e2c9e8f7c5ea18 Mon Sep 17 00:00:00 2001 From: Austin English Date: Mon, 25 Jul 2011 19:28:13 -0700 Subject: [PATCH] ole32/tests: Make sure to use a return value (LLVM/Clang). --- dlls/ole32/tests/marshal.c | 1 + 1 file changed, 1 insertion(+) diff --git a/dlls/ole32/tests/marshal.c b/dlls/ole32/tests/marshal.c index 87b2006b92b..33e074ca152 100644 --- a/dlls/ole32/tests/marshal.c +++ b/dlls/ole32/tests/marshal.c @@ -1870,6 +1870,7 @@ static LRESULT CALLBACK window_proc(HWND hwnd, UINT msg, WPARAM wparam, LPARAM l /* note the use of the magic IID_IWineTest value to tell remote thread * to try to send a message back to us */ hr = IClassFactory_CreateInstance(proxy, NULL, &IID_IWineTest, (void **)&object); + ok(hr == S_FALSE, "expected S_FALSE, got %d\n", hr); IClassFactory_Release(proxy); -- 2.11.4.GIT