diff options
author | George Hazan <george.hazan@gmail.com> | 2015-08-26 11:23:00 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2015-08-26 11:23:00 +0000 |
commit | 05a5fe56ad2c01f3959176bb164bfe12eeac3c8d (patch) | |
tree | ef7edff4a1f1d69419f339fe7d7adbf8ec8a9e47 /protocols/SkypeWeb/src/skype_contacts.cpp | |
parent | 620a8e00fae60a5bef18a000c8bc5a3b98eff6a1 (diff) |
warning fixes
git-svn-id: http://svn.miranda-ng.org/main/trunk@15034 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/SkypeWeb/src/skype_contacts.cpp')
-rw-r--r-- | protocols/SkypeWeb/src/skype_contacts.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/protocols/SkypeWeb/src/skype_contacts.cpp b/protocols/SkypeWeb/src/skype_contacts.cpp index 3444845d76..81bcc6bc2f 100644 --- a/protocols/SkypeWeb/src/skype_contacts.cpp +++ b/protocols/SkypeWeb/src/skype_contacts.cpp @@ -334,7 +334,7 @@ INT_PTR CSkypeProto::BlockContact(WPARAM hContact, LPARAM) void CSkypeProto::OnBlockContact(const NETLIBHTTPREQUEST *response, void *p)
{
- MCONTACT hContact = (MCONTACT)p;
+ MCONTACT hContact = (DWORD_PTR)p;
if (response == NULL)
return;
db_set_dw(hContact, "Ignore", "Mask1", 127);
@@ -349,7 +349,7 @@ INT_PTR CSkypeProto::UnblockContact(WPARAM hContact, LPARAM) void CSkypeProto::OnUnblockContact(const NETLIBHTTPREQUEST *response, void *p)
{
- MCONTACT hContact = (MCONTACT)p;
+ MCONTACT hContact = (DWORD_PTR)p;
if (response == NULL)
return;
db_set_dw(hContact, "Ignore", "Mask1", 0);
|