Commit fcf86b61 authored by Huw Davies's avatar Huw Davies Committed by Alexandre Julliard

msctf/tests: Fix a compiler warning.

parent e4d43c10
......@@ -823,7 +823,9 @@ static void test_ThreadMgrAdviseSinks(void)
if (!source)
return;
ThreadMgrEventSink_Constructor(&sink);
hr = ThreadMgrEventSink_Constructor(&sink);
ok(hr == S_OK, "got %08x\n", hr);
if(FAILED(hr)) return;
tmSinkRefCount = 1;
tmSinkCookie = 0;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment