From 3d30ed65f9e226b7b183b23ce5dba435ec491f0b Mon Sep 17 00:00:00 2001 From: George Hazan Date: Fri, 10 Jan 2025 18:28:28 +0300 Subject: DBEVENTINFO::timestamp to become 64-bit integer --- protocols/Tox/src/tox_utils.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'protocols/Tox/src/tox_utils.cpp') diff --git a/protocols/Tox/src/tox_utils.cpp b/protocols/Tox/src/tox_utils.cpp index 7b7c39bfa8..51d6859f5d 100644 --- a/protocols/Tox/src/tox_utils.cpp +++ b/protocols/Tox/src/tox_utils.cpp @@ -130,7 +130,7 @@ MEVENT CToxProto::AddEventToDb(MCONTACT hContact, uint16_t type, uint32_t timest { DBEVENTINFO dbei = {}; dbei.szModule = m_szModuleName; - dbei.timestamp = timestamp; + dbei.iTimestamp = timestamp; dbei.eventType = type; dbei.cbBlob = (uint32_t)cbBlob; dbei.pBlob = pBlob; -- cgit v1.2.3