diff options
-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;
|