diff options
author | George Hazan <ghazan@miranda.im> | 2017-11-24 18:18:59 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2017-11-24 18:18:59 +0300 |
commit | 0ad50afcb9b77a5d92ccade06a443552f702bdc3 (patch) | |
tree | ceb8d6c1c5027f811c6ed6efec6d2c0eccece569 /plugins/Dbx_mdb/src/dbcontacts.cpp | |
parent | baa0c8ab5a4e5dc7a94a6bb0b8be095a760f48d0 (diff) |
Dbx_mdb:
- fix for settings sorting order;
- warning fixes
Diffstat (limited to 'plugins/Dbx_mdb/src/dbcontacts.cpp')
-rw-r--r-- | plugins/Dbx_mdb/src/dbcontacts.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/Dbx_mdb/src/dbcontacts.cpp b/plugins/Dbx_mdb/src/dbcontacts.cpp index 63de975d68..f6d513b6e4 100644 --- a/plugins/Dbx_mdb/src/dbcontacts.cpp +++ b/plugins/Dbx_mdb/src/dbcontacts.cpp @@ -49,7 +49,7 @@ STDMETHODIMP_(LONG) CDbxMdb::DeleteContact(MCONTACT contactID) }
{
MDBX_val key, data;
- DBSettingKey keyS = { contactID, 0 };
+ DBSettingKey keyS = { contactID, 0, 0 };
txn_ptr txn(m_pMdbEnv);
cursor_ptr cursor(txn, m_dbSettings);
|