mirror of
git://source.winehq.org/git/wine.git
synced 2024-10-31 11:26:10 +00:00
msctf/tests: Fix a compiler warning.
This commit is contained in:
parent
e4d43c1099
commit
fcf86b618a
1 changed files with 3 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue