msctf/tests: Fix a compiler warning.
This commit is contained in:
parent
e4d43c1099
commit
fcf86b618a
|
@ -823,7 +823,9 @@ static void test_ThreadMgrAdviseSinks(void)
|
||||||
if (!source)
|
if (!source)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
ThreadMgrEventSink_Constructor(&sink);
|
hr = ThreadMgrEventSink_Constructor(&sink);
|
||||||
|
ok(hr == S_OK, "got %08x\n", hr);
|
||||||
|
if(FAILED(hr)) return;
|
||||||
|
|
||||||
tmSinkRefCount = 1;
|
tmSinkRefCount = 1;
|
||||||
tmSinkCookie = 0;
|
tmSinkCookie = 0;
|
||||||
|
|
Loading…
Reference in New Issue