diff options
author | George Hazan <george.hazan@gmail.com> | 2014-11-30 09:58:02 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2014-11-30 09:58:02 +0000 |
commit | 389916d6810e52a2d8e5676248684788ef17e42a (patch) | |
tree | 2baa7f13b6d5fbe0c496626618681ac6c8943fdf /protocols/IcqOscarJ/src/stdpackets.cpp | |
parent | 0eb671f7d30f51c6a0f30ed99a4ec123479f3239 (diff) |
warning fix
git-svn-id: http://svn.miranda-ng.org/main/trunk@11169 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/IcqOscarJ/src/stdpackets.cpp')
-rw-r--r-- | protocols/IcqOscarJ/src/stdpackets.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/IcqOscarJ/src/stdpackets.cpp b/protocols/IcqOscarJ/src/stdpackets.cpp index 735dbabcd7..e8f884a222 100644 --- a/protocols/IcqOscarJ/src/stdpackets.cpp +++ b/protocols/IcqOscarJ/src/stdpackets.cpp @@ -330,7 +330,7 @@ DWORD CIcqProto::icq_SendChannel1Message(DWORD dwUin, char *szUID, MCONTACT hCon DWORD CIcqProto::icq_SendChannel1MessageW(DWORD dwUin, char *szUID, MCONTACT hContact, WCHAR *pszText, cookie_message_data *pCookieData)
{
- WORD wMessageLen = strlennull(pszText) * sizeof(WCHAR);
+ WORD wMessageLen = WORD(strlennull(pszText) * sizeof(WCHAR));
DWORD dwCookie = AllocateCookie(CKT_MESSAGE, 0, hContact, (void*)pCookieData);
WORD wPacketLength = (pCookieData->nAckType == ACKTYPE_SERVER) ? 26 : 22;
|