diff options
author | Robert Pösel <robyer@seznam.cz> | 2017-03-16 23:09:48 +0100 |
---|---|---|
committer | Robert Pösel <robyer@seznam.cz> | 2017-03-16 23:09:57 +0100 |
commit | 1d47308647e2b71dc1ef8a15e65ad900f3360939 (patch) | |
tree | 235836f41a6e67dadb108cb7c364a3adf8893c23 /protocols/SkypeWeb | |
parent | e170d02c243cd6047e82ba0ecb939da3245a6a3f (diff) |
SkypeWeb: Fix flags data type
Diffstat (limited to 'protocols/SkypeWeb')
-rw-r--r-- | protocols/SkypeWeb/src/skype_history_sync.cpp | 2 |
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;
|