Marcin Baczyński : msctf: Remove superfluous void* cast.

Alexandre Julliard julliard at winehq.org
Thu Jan 7 13:08:34 CST 2010


Module: wine
Branch: master
Commit: 14ed846438785fe8684556b9cde99838cba1ff2d
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=14ed846438785fe8684556b9cde99838cba1ff2d

Author: Marcin Baczyński <marbacz at gmail.com>
Date:   Wed Jan  6 23:38:29 2010 +0100

msctf: Remove superfluous void* cast.

---

 dlls/msctf/msctf.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/dlls/msctf/msctf.c b/dlls/msctf/msctf.c
index 3451ee8..24b3b64 100644
--- a/dlls/msctf/msctf.c
+++ b/dlls/msctf/msctf.c
@@ -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;




More information about the wine-cvs mailing list