msctf: Remove superfluous void* cast.

This commit is contained in:
Marcin Baczyński 2010-01-06 23:38:29 +01:00 committed by Alexandre Julliard
parent 0666c8e4ec
commit 14ed846438
1 changed files with 1 additions and 1 deletions

View File

@ -351,7 +351,7 @@ HRESULT add_active_textservice(TF_LANGUAGEPROFILE *lp)
ActivatedTextService *actsvr;
ITfCategoryMgr *catmgr;
AtsEntry *entry;
ITfThreadMgr *tm = (ITfThreadMgr*)TlsGetValue(tlsIndex);
ITfThreadMgr *tm = TlsGetValue(tlsIndex);
ITfClientId *clientid;
if (!tm) return E_UNEXPECTED;