diff options
author | sje <sje@4f64403b-2f21-0410-a795-97e2b3489a10> | 2006-11-23 07:25:16 +0000 |
---|---|---|
committer | sje <sje@4f64403b-2f21-0410-a795-97e2b3489a10> | 2006-11-23 07:25:16 +0000 |
commit | 5a86d8a829bc6de9fac5aafb5d77abd0b98cd8b9 (patch) | |
tree | 9292ab176e35fe33a1490d67c60f5f3a6fbddfca | |
parent | ef2480c037838908f8dfa6224e1b8e52a5093ac7 (diff) |
cast to char * instead of "fixing" weirdness in m_userinfo.h
git-svn-id: https://server.scottellis.com.au/svn/mim_plugs@61 4f64403b-2f21-0410-a795-97e2b3489a10
-rw-r--r-- | tipper/subst.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tipper/subst.cpp b/tipper/subst.cpp index b07f567..683c87a 100644 --- a/tipper/subst.cpp +++ b/tipper/subst.cpp @@ -91,7 +91,7 @@ bool uid(HANDLE hContact, TCHAR *buff, int bufflen) { _ltot(ci.dVal, buff, 10);
break;
case CNFT_ASCIIZ:
- a2t(ci.pszVal, buff, bufflen);
+ a2t((char *)ci.pszVal, buff, bufflen); // what's up with TCHAR in CONTACTINFO?!?!?
break;
default:
return false;
|