diff options
author | George Hazan <ghazan@miranda.im> | 2021-03-01 19:22:29 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2021-03-01 19:22:29 +0300 |
commit | 3489b2fbaf66dbc60aed544288fb7cc74fc0547e (patch) | |
tree | 4a903b3cf5baaebf1cf1f12510d03b9b4a852f91 /plugins/Dbx_sqlite/src/dbintf.h | |
parent | 3ebde0b1c89e06cfd640bf7343859ce8f8e53d9e (diff) |
fixes #2755 (Dbx_sqlite: unsigned value is compared to the number -1)
Diffstat (limited to 'plugins/Dbx_sqlite/src/dbintf.h')
-rwxr-xr-x | plugins/Dbx_sqlite/src/dbintf.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/Dbx_sqlite/src/dbintf.h b/plugins/Dbx_sqlite/src/dbintf.h index 0d4a9ed29f..490aa982bc 100755 --- a/plugins/Dbx_sqlite/src/dbintf.h +++ b/plugins/Dbx_sqlite/src/dbintf.h @@ -6,7 +6,7 @@ struct DBCachedContact : public DBCachedContactBase { - uint32_t m_count; + int32_t m_count; MEVENT m_unread; uint32_t m_unreadTimestamp; |