summaryrefslogtreecommitdiff
path: root/protocols/SkypeWeb
diff options
context:
space:
mode:
authorRobert Pösel <robyer@seznam.cz>2017-03-16 23:09:48 +0100
committerRobert Pösel <robyer@seznam.cz>2017-03-16 23:09:57 +0100
commit1d47308647e2b71dc1ef8a15e65ad900f3360939 (patch)
tree235836f41a6e67dadb108cb7c364a3adf8893c23 /protocols/SkypeWeb
parente170d02c243cd6047e82ba0ecb939da3245a6a3f (diff)
SkypeWeb: Fix flags data type
Diffstat (limited to 'protocols/SkypeWeb')
-rw-r--r--protocols/SkypeWeb/src/skype_history_sync.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/SkypeWeb/src/skype_history_sync.cpp b/protocols/SkypeWeb/src/skype_history_sync.cpp
index c4ec7d726e..0baf127e7b 100644
--- a/protocols/SkypeWeb/src/skype_history_sync.cpp
+++ b/protocols/SkypeWeb/src/skype_history_sync.cpp
@@ -60,7 +60,7 @@ void CSkypeProto::OnGetServerHistory(const NETLIBHTTPREQUEST *response)
if (timestamp > db_get_dw(hContact, m_szModuleName, "LastMsgTime", 0))
db_set_dw(hContact, m_szModuleName, "LastMsgTime", (DWORD)timestamp);
- int iFlags = DBEF_UTF;
+ DWORD iFlags = DBEF_UTF;
if (!markAllAsUnread)
iFlags |= DBEF_READ;